Home
last modified time | relevance | path

Searched full:m (Results 1 – 25 of 160) sorted by relevance

1234567

/openthread-3.4.0/third_party/mbedtls/repo/include/mbedtls/
Dbn_mul.h194 : "=m" (t), "=m" (c), "=m" (d), "=m" (s) \
195 : "m" (t), "m" (s), "m" (d), "m" (c), "m" (b) \
206 : "=m" (t), "=m" (c), "=m" (d), "=m" (s) \
207 : "m" (t), "m" (s), "m" (d), "m" (c), "m" (b) \
232 : "+c" (c), "+D" (d), "+S" (s), "+m" (*(uint64_t (*)[16]) d) \
233 : "b" (b), "m" (*(const uint64_t (*)[16]) s) \
256 : "+r" (c), "+r" (d), "+r" (s), "+m" (*(uint64_t (*)[16]) d) \
257 : "r" (b), "m" (*(const uint64_t (*)[16]) s) \
286 : "=m" (c), "=m" (d), "=m" (s) \
287 : "m" (s), "m" (d), "m" (c), "m" (b) \
[all …]
/openthread-3.4.0/third_party/mbedtls/repo/library/
Dpadlock.c61 : "=m" (ebx), "=m" (edx) in mbedtls_padlock_has_support()
62 : "m" (ebx) in mbedtls_padlock_has_support()
102 : "=m" (ebx) in mbedtls_padlock_xcryptecb()
103 : "m" (ebx), "m" (ctrl), "m" (rk), "m" (blk) in mbedtls_padlock_xcryptecb()
152 : "=m" (ebx) in mbedtls_padlock_xcryptcbc()
153 : "m" (ebx), "m" (count), "m" (ctrl), in mbedtls_padlock_xcryptcbc()
154 "m" (rk), "m" (input), "m" (output), "m" (iw) in mbedtls_padlock_xcryptcbc()
Darc4.c66 unsigned char *m; in mbedtls_arc4_setup() local
70 m = ctx->m; in mbedtls_arc4_setup()
73 m[i] = (unsigned char) i; in mbedtls_arc4_setup()
81 a = m[i]; in mbedtls_arc4_setup()
83 m[i] = m[j]; in mbedtls_arc4_setup()
84 m[j] = (unsigned char) a; in mbedtls_arc4_setup()
96 unsigned char *m; in mbedtls_arc4_crypt() local
100 m = ctx->m; in mbedtls_arc4_crypt()
104 x = ( x + 1 ) & 0xFF; a = m[x]; in mbedtls_arc4_crypt()
105 y = ( y + a ) & 0xFF; b = m[y]; in mbedtls_arc4_crypt()
[all …]
Dmps_trace.c35 #define color_default "\x1B[0m"
36 #define color_red "\x1B[1;31m"
37 #define color_green "\x1B[1;32m"
38 #define color_yellow "\x1B[1;33m"
39 #define color_blue "\x1B[1;34m"
40 #define color_magenta "\x1B[1;35m"
41 #define color_cyan "\x1B[1;36m"
42 #define color_white "\x1B[1;37m"
Decp.c1316 * Cost: 1N := 1I + 3M + 1S
1370 * Cost: 1N(t) := 1I + (6t - 3)M + 1S
1495 * Cost: 1D := 3M + 4S (A == 0)
1496 * 4M + 4S (A == -3)
1497 * 3M + 6S + 1a otherwise
1515 mbedtls_mpi M, S, T, U; in ecp_double_jac() local
1517 mbedtls_mpi_init( &M ); mbedtls_mpi_init( &S ); mbedtls_mpi_init( &T ); mbedtls_mpi_init( &U ); in ecp_double_jac()
1522 /* M = 3(X + Z^2)(X - Z^2) */ in ecp_double_jac()
1527 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_int( &M, &S, 3 ) ); MOD_ADD( M ); in ecp_double_jac()
1531 /* M = 3.X^2 */ in ecp_double_jac()
[all …]
Decp_curves.c1192 mbedtls_mpi M; in ecp_mod_p521() local
1194 /* Worst case for the size of M is when mbedtls_mpi_uint is 16 bits: in ecp_mod_p521()
1201 /* M = A1 */ in ecp_mod_p521()
1202 M.s = 1; in ecp_mod_p521()
1203 M.n = N->n - ( P521_WIDTH - 1 ); in ecp_mod_p521()
1204 if( M.n > P521_WIDTH + 1 ) in ecp_mod_p521()
1205 M.n = P521_WIDTH + 1; in ecp_mod_p521()
1206 M.p = Mp; in ecp_mod_p521()
1207 memcpy( Mp, N->p + P521_WIDTH - 1, M.n * sizeof( mbedtls_mpi_uint ) ); in ecp_mod_p521()
1208 MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( &M, 521 % ( 8 * sizeof( mbedtls_mpi_uint ) ) ) ); in ecp_mod_p521()
[all …]
/openthread-3.4.0/third_party/jlink/SEGGER_RTT_V640/RTT/
DSEGGER_RTT.h218 #define RTT_CTRL_RESET "\x1B[0m" // Reset to default colors
221 #define RTT_CTRL_TEXT_BLACK "\x1B[2;30m"
222 #define RTT_CTRL_TEXT_RED "\x1B[2;31m"
223 #define RTT_CTRL_TEXT_GREEN "\x1B[2;32m"
224 #define RTT_CTRL_TEXT_YELLOW "\x1B[2;33m"
225 #define RTT_CTRL_TEXT_BLUE "\x1B[2;34m"
226 #define RTT_CTRL_TEXT_MAGENTA "\x1B[2;35m"
227 #define RTT_CTRL_TEXT_CYAN "\x1B[2;36m"
228 #define RTT_CTRL_TEXT_WHITE "\x1B[2;37m"
230 #define RTT_CTRL_TEXT_BRIGHT_BLACK "\x1B[1;30m"
[all …]
/openthread-3.4.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_ecdsa.function19 mbedtls_mpi m;
32 mbedtls_ecdsa_sign( NULL, &m, &m, &m,
37 mbedtls_ecdsa_sign( &grp, NULL, &m, &m,
42 mbedtls_ecdsa_sign( &grp, &m, NULL, &m,
47 mbedtls_ecdsa_sign( &grp, &m, &m, NULL,
52 mbedtls_ecdsa_sign( &grp, &m, &m, &m,
57 mbedtls_ecdsa_sign( &grp, &m, &m, &m,
63 mbedtls_ecdsa_sign_det_ext( NULL, &m, &m, &m,
69 mbedtls_ecdsa_sign_det_ext( &grp, NULL, &m, &m,
75 mbedtls_ecdsa_sign_det_ext( &grp, &m, NULL, &m,
[all …]
Dtest_suite_ecp.function48 mbedtls_mpi m;
81 &m,
91 &m,
234 mbedtls_ecp_mul( NULL, &P, &m, &P,
238 mbedtls_ecp_mul( &grp, NULL, &m, &P,
246 mbedtls_ecp_mul( &grp, &P, &m, NULL,
251 mbedtls_ecp_mul_restartable( NULL, &P, &m, &P,
255 mbedtls_ecp_mul_restartable( &grp, NULL, &m, &P,
263 mbedtls_ecp_mul_restartable( &grp, &P, &m, NULL,
268 mbedtls_ecp_muladd( NULL, &P, &m, &P,
[all …]
Dtest_suite_base64.function28 unsigned char m = mbedtls_ct_uchar_mask_of_range( low, high, c );
30 TEST_CF_PUBLIC( &m, sizeof( m ) );
32 TEST_EQUAL( m, 0xff );
34 TEST_EQUAL( m, 0 );
/openthread-3.4.0/tests/scripts/thread-cert/
Dmessage.py388 m = self.messages.pop(0)
390 if m.type != MessageType.COAP:
393 if uri_path is not None and m.coap.uri_path != uri_path:
397 if not m.coap.code.is_equal_dotted(code):
400 message = m
422 m = self.messages[i]
424 if m.type != MessageType.MLE:
428 if m.mle.command.type == command_type:
429 message = m
452 m = self.messages.pop(0)
[all …]
/openthread-3.4.0/third_party/nlbuild-autotools/repo/third_party/autoconf/
Dmkinstalldirs21 Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
35 -m) # -m PERM arg
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
95 echo "mkdir -m $dirmode -p -- $*"
96 exec mkdir -m "$dirmode" -p -- "$@"
99 for d in ./-m ./-p ./--version "./$dirmode";
159 # time-stamp-format: "%:y-%02m-%02d.%02H"
Dtest-driver90 red='' # Red.
91 grn='' # Green.
92 lgn='' # Light green.
93 blu='' # Blue.
94 mgn='' # Magenta.
95 std='' # No color.
136 # time-stamp-format: "%:y-%02m-%02d.%02H"
/openthread-3.4.0/third_party/mbedtls/repo/tests/
Dcontext-info.sh48 printf " -m|--memcheck\tUse valgrind to check the memory.\n"
88 -m|--memcheck)
122 # Options: -m <pattern that MUST be present in the output of tested program>
167 "-m")
332 -m "Deserializing" \
333 -m "ERROR"
337 -m "Deserializing" \
338 -m "ERROR"
399 -m "ERROR" \
405 -m "ERROR" \
[all …]
/openthread-3.4.0/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dmacro_collector.py295 m = re.match(self._define_directive_re, line)
296 if not m:
298 name, parameter, expansion = m.groups()
342 m = re.search(self._continued_line_re, line)
343 while m:
345 line = line[:m.start(0)] + cont
346 m = re.search(self._continued_line_re, line)
456 m = re.match(self._header_line_re, line)
457 if not m:
459 name = m.group(1)
[all …]
/openthread-3.4.0/etc/docker/environment/
DDockerfile24 && python3 -m pip install -U pip \
25 && python3 -m pip install -U cmake \
26 && python3 -m pip install wheel
/openthread-3.4.0/examples/platforms/utils/
Dlogging_rtt.c47 #define RTT_COLOR_CODE_DEFAULT "\x1B[0m"
48 #define RTT_COLOR_CODE_RED "\x1B[1;31m"
49 #define RTT_COLOR_CODE_GREEN "\x1B[1;32m"
50 #define RTT_COLOR_CODE_YELLOW "\x1B[1;33m"
51 #define RTT_COLOR_CODE_CYAN "\x1B[1;36m"
/openthread-3.4.0/third_party/mbedtls/repo/scripts/
Drm-calloc-cast.cocci2 expression x, n, m;
7 mbedtls_calloc(n, m)
Dassemble_changelog.py136 m = re.search(cls._top_version_re, changelog_file_content)
137 top_version_start = m.start(1)
138 top_version_end = m.end(2)
139 top_version_title = m.group(1)
140 top_version_body = m.group(2)
163 title_starts = [m.start(1) for m in title_matches]
164 body_starts = [m.end(0) for m in title_matches]
306 m = re.search(b'(.+)$', hashes)
307 if not m:
313 return m.group(0)
Dmin_requirements.py64 m = re.match(r'-r\s+', line)
65 if m:
67 line[m.end(0):])
97 subprocess.check_call([sys.executable, '-m', 'pip'] +
Dconfig.py377 m = re.match(self._config_line_regexp, line)
378 if m is None:
380 elif m.group('section'):
381 self.current_section = m.group('section')
384 active = not m.group('commented_out')
385 name = m.group('name')
386 value = m.group('value')
388 m.group('indentation'),
389 m.group('define') + name +
390 m.group('arguments') + m.group('separator'))
/openthread-3.4.0/tools/harness-automation/autothreadharness/
Dharness_controller.py95 … self.harness_file = '%s\\harness-%s.log' % (self.result_dir, time.strftime('%Y%m%d%H%M%S'))
115 …with open('%s\\miniweb-%s.log' % (self.result_dir, time.strftime('%Y%m%d%H%M%S')), 'w') as miniweb…
/openthread-3.4.0/tools/harness-simulation/harness/
Dinstall.bat37 %THREADDIR%\Python27\python.exe -m pip install --upgrade pip
38 %THREADDIR%\Python27\python.exe -m pip install -r requirements.txt
43 %systemdrive%\GRL\Thread1.2\Python27\python.exe -m grpc_tools.protoc -I%BASEDIR% --python_out=%BASE…
/openthread-3.4.0/third_party/mbedtls/repo/tests/scripts/
Dcheck-doxy-blocks.pl49 $block_start = $. if $line =~ m/\/\*(?![*!])/;
50 $block_start = 0 if $line =~ m/\*\//;
51 if ($block_start and $line =~ m/$doxy_re/) {
/openthread-3.4.0/third_party/mbedtls/repo/docs/architecture/testing/
Ddriver-interface-test-strategy.md83 … key in a secure element involves multiple storage modifications (M<sub>1</sub>, ..., M<sub>n</sub…
85 …each potential interruption point (before M<sub>1</sub>, between M<sub>1</sub> and M<sub>2</sub>, …

1234567