| /lib/lwip/lwip/src/include/lwip/priv/ |
| A D | api_msg.h | 60 #define API_MSG_M_DEF_SEM(m) *m argument 62 #define API_MSG_M_DEF_SEM(m) API_MSG_M_DEF(m) 65 #define API_MSG_M_DEF_SEM(m) API_MSG_M_DEF(m) 194 void lwip_netconn_do_newconn (void *m); 195 void lwip_netconn_do_delconn (void *m); 196 void lwip_netconn_do_bind (void *m); 197 void lwip_netconn_do_bind_if (void *m); 198 void lwip_netconn_do_connect (void *m); 199 void lwip_netconn_do_disconnect (void *m); 229 #define NETIFAPI_IPADDR_DEF(type, m) type m argument [all …]
|
| A D | tcpip_priv.h | 80 #define API_MSG_M_DEF(m) m argument 81 #define API_MSG_M_DEF_C(t, m) t m argument 93 #define API_MSG_M_DEF(m) *m argument 94 #define API_MSG_M_DEF_C(t, m) const t * m argument
|
| /lib/mbedtls/external/mbedtls/tests/suites/ |
| A D | test_suite_bignum_mod.function | 47 mbedtls_mpi_mod_modulus m; 80 TEST_ASSERT(m.p != mp); 109 mbedtls_mpi_mod_modulus m; 194 mbedtls_mpi_mod_modulus m; 243 mbedtls_mpi_mod_modulus m; 257 size_t limbs = m.limbs; 325 mbedtls_free((void *) m.p); /* mbedtls_mpi_mod_modulus_free() sets m.p = NULL */ 460 size_t limbs = m.limbs; 529 mbedtls_free((void *) m.p); /* mbedtls_mpi_mod_modulus_free() sets m.p = NULL */ 615 m.limbs--; [all …]
|
| A D | test_suite_bignum_mod_raw.function | 22 mbedtls_mpi_mod_modulus m; 23 mbedtls_mpi_mod_modulus_init(&m); 122 mbedtls_mpi_mod_modulus m; 192 mbedtls_mpi_mod_modulus m; 279 mbedtls_mpi_mod_modulus m; 346 mbedtls_mpi_mod_modulus m; 399 mbedtls_mpi_mod_modulus m; 558 mbedtls_mpi_mod_modulus m; 697 mbedtls_mpi_mod_modulus m; 724 m.rep.mont.mm, m.rep.mont.rr, T); [all …]
|
| A D | test_suite_bignum_mod.misc.data | 105 Test mbedtls_mpi_residue_setup #1 m > r 108 Test mbedtls_mpi_residue_setup #2 r == m - 1 111 Test mbedtls_mpi_residue_setup #3 m->limbs = r-> limbs && m > r 114 Test mbedtls_mpi_residue_setup #4 m->limbs = r-> limbs && m > r 117 Test mbedtls_mpi_residue_setup #5 m->limbs > r-> limbs && m > r 120 Test mbedtls_mpi_residue_setup #6 m->limbs < r-> limbs && m > r 123 Test mbedtls_mpi_residue_setup #7 r == m 126 Test mbedtls_mpi_residue_setup #8 r > m 129 Test mbedtls_mpi_mod_io_neg #1 input_r < modulo m 132 Test mbedtls_mpi_mod_io_neg #2 input_r == modulo m [all …]
|
| A D | test_suite_ecp.function | 1572 mbedtls_mpi_mod_modulus m; 1573 mbedtls_mpi_mod_modulus_init(&m); 1681 mbedtls_mpi_mod_modulus m; 1723 mbedtls_mpi_mod_modulus m; 1741 TEST_EQUAL(m.limbs, limbs); 1782 mbedtls_mpi_mod_modulus m; 1799 TEST_EQUAL(m.limbs, p_A_limbs); 1832 mbedtls_mpi_mod_modulus m; 1847 TEST_EQUAL(m.limbs, limbs); 1894 mbedtls_mpi_mod_modulus m; [all …]
|
| /lib/lwip/lwip/src/netif/ppp/polarssl/ |
| A D | arc4.c | 51 unsigned char *m; in arc4_setup() local 55 m = ctx->m; in arc4_setup() 58 m[i] = (unsigned char) i; in arc4_setup() 66 a = m[i]; in arc4_setup() 68 m[i] = m[j]; in arc4_setup() 69 m[j] = (unsigned char) a; in arc4_setup() 79 unsigned char *m; in arc4_crypt() local 83 m = ctx->m; in arc4_crypt() 87 x = ( x + 1 ) & 0xFF; a = m[x]; in arc4_crypt() 90 m[x] = (unsigned char) b; in arc4_crypt() [all …]
|
| /lib/ |
| A D | display_options.c | 81 m = f; in print_freq() 83 m /= 10; in print_freq() 84 while (m && !(m % 10)) in print_freq() 85 m /= 10; in print_freq() 86 if (m >= 100) in print_freq() 87 m = (m / 10) + (m % 100 >= 50); in print_freq() 91 if (m) in print_freq() 129 if (m >= 10) { in print_size() 130 m -= 10; in print_size() 135 m = 0; in print_size() [all …]
|
| A D | bch.c | 256 if (m) { in encode_bch() 257 mlen = (len < (4-m)) ? len : 4-m; in encode_bch() 398 if (m) in compute_syndromes() 489 mask = 1 << m; in solve_linear_system() 764 int la, p, m; in gf_poly_mod() local 782 m = rep[i]; in gf_poly_mod() 966 int m; in chien_search() local 979 if (m >= 0) in chien_search() 1321 if ((m < min_m) || (m > max_m)) in init_bch() 1330 if ((t < 1) || (m*t >= ((1 << m)-1))) in init_bch() [all …]
|
| /lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/ |
| A D | c_parsing_helper.py | 42 m = self._DECLARATION_RE.match(self.decl) 43 if not m: 46 self.name = m.group('name') #type: Optional[str] 47 self.suffix = m.group('suffix') if m.group('suffix') else '' #type: str 91 lambda m: re.sub(_NOT_NEWLINES_RE, "", m.group(0)), 117 m = _C_FUNCTION_DECLARATION_RE.match(line) 118 if not m: 120 qualifiers = m.group('qualifiers').split() 121 return_type = m.group('return_type') 122 name = m.group('name') [all …]
|
| A D | crypto_knowledge.py | 108 assert m 312 if m: 313 expr = m.group(1) 324 if not m: 326 head = m.group(1) 329 if not m: 422 if not m: 424 kdf_alg = m.group(1) 465 if m: 493 if m: [all …]
|
| A D | macro_collector.py | 289 if not m: 291 name, parameter, expansion = m.groups() 336 while m: 338 line = line[:m.start(0)] + cont 467 m = re.match(self._header_line_re, line) 468 if not m: 470 name = m.group(1) 476 dest = self.table_by_prefix.get(m.group(2)) 480 if m.group(3): 538 if m: [all …]
|
| /lib/mbedtls/external/mbedtls/3rdparty/p256-m/ |
| A D | README.md | 1 …m/` subdirectory originate from the [p256-m GitHub repository](https://github.com/mpg/p256-m). The… 3 The files `p256-m.c`, `p256-m.h` and `README.md` have been taken from the `p256-m` repository. 4 It should be noted that p256-m deliberately does not supply its own cryptographically secure RNG fu…
|
| /lib/lwip/lwip/src/netif/ppp/ |
| A D | pppapi.c | 58 pppapi_do_ppp_set_default(struct tcpip_api_call_data *m) in pppapi_do_ppp_set_default() argument 62 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; in pppapi_do_ppp_set_default() 126 pppapi_do_pppos_create(struct tcpip_api_call_data *m) in pppapi_do_pppos_create() argument 130 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; in pppapi_do_pppos_create() 167 pppapi_do_pppoe_create(struct tcpip_api_call_data *m) in pppapi_do_pppoe_create() argument 212 pppapi_do_pppol2tp_create(struct tcpip_api_call_data *m) in pppapi_do_pppol2tp_create() argument 271 pppapi_do_ppp_connect(struct tcpip_api_call_data *m) in pppapi_do_ppp_connect() argument 304 pppapi_do_ppp_listen(struct tcpip_api_call_data *m) in pppapi_do_ppp_listen() argument 336 pppapi_do_ppp_close(struct tcpip_api_call_data *m) in pppapi_do_ppp_close() argument 368 pppapi_do_ppp_free(struct tcpip_api_call_data *m) in pppapi_do_ppp_free() argument [all …]
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | sys.h | 69 #define sys_mbox_new(m, s) ERR_OK argument 70 #define sys_mbox_fetch(m,d) argument 71 #define sys_mbox_tryfetch(m,d) argument 72 #define sys_mbox_post(m,d) argument 73 #define sys_mbox_trypost(m,d) argument 74 #define sys_mbox_free(m) argument 75 #define sys_mbox_valid(m) argument 76 #define sys_mbox_valid_val(m) argument 77 #define sys_mbox_set_invalid(m) argument 78 #define sys_mbox_set_invalid_val(m) argument
|
| /lib/mbedtls/external/mbedtls/programs/ |
| A D | demo_common.sh | 94 m= 97 m="$m $x" 100 if [ -n "$m" ]; then 104 $m
|
| /lib/mbedtls/external/mbedtls/tests/scripts/ |
| A D | check_files.py | 179 m = re.match(self._shebang_re, first_line) 180 if not m: 182 interpreter = m.group(1) or m.group(2) 424 m = self.COPYRIGHT_RE.match(line) 425 if m and m.group(1) != self.COPYRIGHT_HOLDER: 429 m = self.SPDX_RE.match(line) 430 if m: 431 if m.group(1) != self.SPDX_HEADER_KEY: 434 if not m.group(3): 441 m = self.LICENSE_MENTION_RE.match(line) [all …]
|
| /lib/libavb/ |
| A D | avb_sysdeps_posix.c | 47 const char* m; in avb_printv() local 50 for (m = message; m != NULL; m = va_arg(ap, const char*)) { in avb_printv() 51 printf("%s", m); in avb_printv()
|
| /lib/lwip/lwip/src/api/ |
| A D | netifapi.c | 61 netifapi_do_netif_add(struct tcpip_api_call_data *m) in netifapi_do_netif_add() argument 65 struct netifapi_msg *msg = (struct netifapi_msg *)(void *)m; in netifapi_do_netif_add() 87 netifapi_do_netif_set_addr(struct tcpip_api_call_data *m) in netifapi_do_netif_set_addr() argument 91 struct netifapi_msg *msg = (struct netifapi_msg *)(void *)m; in netifapi_do_netif_set_addr() 105 netifapi_do_name_to_index(struct tcpip_api_call_data *m) in netifapi_do_name_to_index() argument 109 struct netifapi_msg *msg = (struct netifapi_msg *)(void *)m; in netifapi_do_name_to_index() 119 netifapi_do_index_to_name(struct tcpip_api_call_data *m) in netifapi_do_index_to_name() argument 123 struct netifapi_msg *msg = (struct netifapi_msg *)(void *)m; in netifapi_do_index_to_name() 137 netifapi_do_netif_common(struct tcpip_api_call_data *m) in netifapi_do_netif_common() argument 141 struct netifapi_msg *msg = (struct netifapi_msg *)(void *)m; in netifapi_do_netif_common()
|
| /lib/rsa/ |
| A D | rsa-keyprop.c | 333 size_t u, m; in br_i32_add() local 336 m = (a[0] + 63) >> 5; in br_i32_add() 337 for (u = 1; u < m; u ++) { in br_i32_add() 366 size_t u, m; in br_i32_sub() local 369 m = (a[0] + 63) >> 5; in br_i32_sub() 370 for (u = 1; u < m; u ++) { in br_i32_sub() 473 m_bitlen = m[0]; in br_i32_muladd_small() 544 mw = m[u]; in br_i32_muladd_small() 568 br_i32_add(x, m, over); in br_i32_muladd_small() 569 br_i32_sub(x, m, under); in br_i32_muladd_small() [all …]
|
| /lib/mbedtls/external/mbedtls/scripts/ |
| A D | config.py | 423 m = re.match(self._config_line_regexp, line) 424 if m is None: 426 elif m.group('section'): 427 self.current_section = m.group('section') 430 active = not m.group('commented_out') 431 name = m.group('name') 432 value = m.group('value') 434 m.group('indentation'), 435 m.group('define') + name + 436 m.group('arguments') + m.group('separator'))
|
| A D | assemble_changelog.py | 130 m = re.search(cls._top_version_re, changelog_file_content) 131 top_version_start = m.start(1) 132 top_version_end = m.end(2) 133 top_version_title = m.group(1) 134 top_version_body = m.group(2) 158 title_starts = [m.start(1) for m in title_matches] 159 body_starts = [m.end(0) for m in title_matches] 302 m = re.search('(.+)$', hashes.decode('ascii')) 303 if not m: 309 return m.group(0)
|
| /lib/mbedtls/external/mbedtls/library/ |
| A D | ecp.c | 2143 MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&M, m)); in ecp_comb_recode_scalar() 2582 b = mbedtls_mpi_get_bit(m, i); in ecp_mul_mxz() 2775 if (mbedtls_mpi_cmp_int(m, 0) == 0) { in mbedtls_ecp_mul_shortcuts() 3514 (void) m; in self_test_adjust_exponent() 3526 mbedtls_mpi *m, in self_test_point() argument 3583 mbedtls_mpi m; in mbedtls_ecp_self_test() local 3617 mbedtls_mpi_init(&m); in mbedtls_ecp_self_test() 3631 MBEDTLS_MPI_CHK(mbedtls_mpi_lset(&m, 2)); in mbedtls_ecp_self_test() 3634 &grp, &R, &m, &grp.G, in mbedtls_ecp_self_test() 3646 &grp, &R, &m, &P, in mbedtls_ecp_self_test() [all …]
|
| /lib/mbedtls/external/mbedtls/3rdparty/p256-m/p256-m/ |
| A D | p256-m.c | 466 uint32_t m[8]; member 554 (void) u256_add(r, z, mod->m); in m256_sub() 702 uint32_t limb = mod->m[i] - 2; in m256_inv() 716 limb = mod->m[i]; in m256_inv() 875 uint32_t m[8], s[8], u[8]; in point_double() local 879 m256_add_p(m, x, s); in point_double() 881 m256_mul_p(s, m, u); in point_double() 882 m256_add_p(m, s, s); in point_double() 883 m256_add_p(m, m, s); in point_double() 896 m256_mul_p(x, m, m); in point_double() [all …]
|
| /lib/zlib/ |
| A D | trees.c | 448 #define smaller(tree, n, m, depth) \ argument 449 (tree[n].Freq < tree[m].Freq || \ 450 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 559 m = s->heap[--h]; 560 if (m > max_code) continue; 562 Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits)); 564 *(long)tree[m].Freq; 565 tree[m].Len = (ush)bits; 676 s->heap[--(s->heap_max)] = m; 682 tree[n].Dad = tree[m].Dad = (ush)node; [all …]
|