/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/ |
D | test_intrusive_list.cpp | 36 TestNode n2("two", 2); variable 43 list.push_front(&n2); 66 TestNode n2("two", 2); variable 71 list.push_back(&n2); 86 TestNode n2("two", 2); variable 91 list.push_back(&n2); 106 TestNode n2("two", 2); variable 110 list.push_back(&n2); 125 TestNode n2("two", 2); variable 129 list.push_back(&n2); [all …]
|
/hal_espressif-3.6.0/components/esp_system/ |
D | panic.c | 147 int n1, n2; in panic_print_dec() local 149 n2 = d / 10; // extract tens digit in panic_print_dec() 150 if (n2 == 0) { in panic_print_dec() 153 panic_print_char(n2 + '0'); in panic_print_dec()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/include/ |
D | smp_int.h | 383 UINT8 *n2, UINT8 *a1, UINT8 *a2, 385 extern void smp_f5_calc_chk (UINT8 *w, UINT8 *n1, UINT8 *n2, UINT8 *a1, UINT8 *a2, 387 extern void smp_f6_calc_chk (UINT8 *w, UINT8 *n1, UINT8 *n2, UINT8 *r, 521 extern BOOLEAN smp_calculate_f5(UINT8 *w, UINT8 *n1, UINT8 *n2, UINT8 *a1, UINT8 *a2, 524 UINT8 *key_id, UINT8 *n1, UINT8 *n2, UINT8 *a1, 527 extern BOOLEAN smp_calculate_f6(UINT8 *w, UINT8 *n1, UINT8 *n2, UINT8 *r, UINT8 *iocap,
|
/hal_espressif-3.6.0/components/vfs/include/ |
D | esp_vfs.h | 133 …int (*link_p)(void* ctx, const char* n1, const char* n2); /*!< … 134 …int (*link)(const char* n1, const char* n2); /*!< … 380 int esp_vfs_link(struct _reent *r, const char* n1, const char* n2);
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/ |
D | smp_keys.c | 1486 BOOLEAN smp_calculate_f5(UINT8 *w, UINT8 *n1, UINT8 *n2, UINT8 *a1, UINT8 *a2, in smp_calculate_f5() argument 1517 p_prnt = n2; in smp_calculate_f5() 1534 if (!smp_calculate_f5_mackey_or_long_term_key(t, counter_mac_key, key_id, n1, n2, a1, a2, in smp_calculate_f5() 1544 if (!smp_calculate_f5_mackey_or_long_term_key(t, counter_ltk, key_id, n1, n2, a1, a2, in smp_calculate_f5() 1590 UINT8 *key_id, UINT8 *n1, UINT8 *n2, UINT8 *a1, UINT8 *a2, in smp_calculate_f5_mackey_or_long_term_key() argument 1615 p_prnt = n2; in smp_calculate_f5_mackey_or_long_term_key() 1635 ARRAY_TO_STREAM(p, n2, BT_OCTET16_LEN); in smp_calculate_f5_mackey_or_long_term_key() 1827 BOOLEAN smp_calculate_f6(UINT8 *w, UINT8 *n1, UINT8 *n2, UINT8 *r, UINT8 *iocap, UINT8 *a1, in smp_calculate_f6() argument 1845 p_print = n2; in smp_calculate_f6() 1872 ARRAY_TO_STREAM(p, n2, BT_OCTET16_LEN); in smp_calculate_f6()
|
D | aes.c | 237 uint_8t p1 = x, p2 = BPOLY, n1 = hibit(x), n2 = 0x80, v1 = 1, v2 = 0; in gf_inv() local 245 while (n2 >= n1) { /* divide polynomial p2 by p1 */ in gf_inv() 246 n2 /= n1; /* shift smaller polynomial left */ in gf_inv() 247 p2 ^= (p1 * n2) & 0xff; /* and remove from larger one */ in gf_inv() 248 v2 ^= (v1 * n2); /* shift accumulated value and */ in gf_inv() 249 n2 = hibit(p2); /* add into result */ in gf_inv() 255 if (n2) { /* repeat with values swapped */ in gf_inv() 256 while (n1 >= n2) { in gf_inv() 257 n1 /= n2; in gf_inv()
|
/hal_espressif-3.6.0/components/fatfs/vfs/ |
D | vfs_fat.c | 79 static int vfs_fat_link(void* ctx, const char* n1, const char* n2); 629 static int vfs_fat_link(void* ctx, const char* n1, const char* n2) in vfs_fat_link() argument 633 prepend_drive_to_path(fat_ctx, &n1, &n2); in vfs_fat_link() 655 res = f_open(pf2, n2, FA_WRITE | FA_CREATE_NEW); in vfs_fat_link()
|
/hal_espressif-3.6.0/components/newlib/ |
D | syscalls.c | 112 int _link_r(struct _reent *r, const char* n1, const char* n2)
|
/hal_espressif-3.6.0/components/vfs/ |
D | vfs.c | 598 int esp_vfs_link(struct _reent *r, const char* n1, const char* n2) in esp_vfs_link() argument 605 const vfs_entry_t* vfs2 = get_vfs_for_path(n2); in esp_vfs_link() 611 const char* path2_within_vfs = translate_path(vfs, n2); in esp_vfs_link() 1246 int _link_r(struct _reent *r, const char* n1, const char* n2)
|
/hal_espressif-3.6.0/components/spiffs/ |
D | esp_spiffs.c | 78 static int vfs_spiffs_link(void* ctx, const char* n1, const char* n2); 745 static int vfs_spiffs_link(void* ctx, const char* n1, const char* n2) in vfs_spiffs_link() argument
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/rfcomm/include/ |
D | rfc_int.h | 94 UINT8 n2; member
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/crypto/ |
D | libtommath.h | 1639 int res, n, n2; in mp_div() local 1689 n2 = (a->sign == b->sign ? MP_ZPOS : MP_NEG); in mp_div() 1692 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2; in mp_div()
|
/hal_espressif-3.6.0/components/wpa_supplicant/src/tls/ |
D | libtommath.h | 1635 int res, n, n2; in mp_div() local 1685 n2 = (a->sign == b->sign ? MP_ZPOS : MP_NEG); in mp_div() 1688 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2; in mp_div()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/rfcomm/ |
D | rfc_ts_frames.c | 751 p_rx_frame->u.pn.n2 = *p_data++; in rfc_process_mx_message()
|