/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/smp/ |
D | p_256_ecc_pp.c | 39 static void p_256_init_point(Point *q) in p_256_init_point() argument 41 memset(q, 0, sizeof(Point)); in p_256_init_point() 44 static void p_256_copy_point(Point *q, Point *p) in p_256_copy_point() argument 46 memcpy(q, p, sizeof(Point)); in p_256_copy_point() 50 static void ECC_Double(Point *q, Point *p, uint32_t keyLength) in ECC_Double() argument 63 multiprecision_init(q->z, keyLength); in ECC_Double() 68 x3 = q->x; y3 = q->y; z3 = q->z; in ECC_Double() 96 static void ECC_Add(Point *r, Point *p, Point *q, uint32_t keyLength) in ECC_Add() argument 111 x2 = q->x; y2 = q->y; z2 = q->z; in ECC_Add() 122 p_256_copy_point(r, q); in ECC_Add() [all …]
|
/hal_espressif-2.7.6/components/lwip/test_afl_host/ |
D | network_mock.c | 23 struct pbuf* q = in; in pbuf_skip() local 26 while ((q != NULL) && (q->len <= offset_left)) { in pbuf_skip() 27 offset_left -= q->len; in pbuf_skip() 28 q = q->next; in pbuf_skip() 33 return q; in pbuf_skip() 39 struct pbuf* q = pbuf_skip(p, offset, &q_idx); in pbuf_try_get_at() local 42 if ((q != NULL) && (q->len > q_idx)) { in pbuf_try_get_at() 43 return ((u8_t*)q->payload)[q_idx]; in pbuf_try_get_at() 51 struct pbuf* q = pbuf_skip(p, offset, &q_idx); in pbuf_put_at() local 54 if ((q != NULL) && (q->len > q_idx)) { in pbuf_put_at() [all …]
|
/hal_espressif-2.7.6/tools/esp_app_trace/test/sysview/ |
D | heap_log_mcore.svdat | 34 �$5��������B�"�R�����D�����q���������������q������ 40 …�5����G����"�B�����R��D�����q���������������q������ 46 ���5�������B�"�R�����D�����q�����������B�����R�1���… 47 �D����5���q������ 53 �R�5����Q�����B�"�R�����D�����q�����������q������ 57 �B�5����R�����D����"�B�����R��D�����q������������q�����… 62 �R�5���Q�����B�"�R�����D�����q�����������q������
|
/hal_espressif-2.7.6/components/lwip/port/esp32/netif/ |
D | ethernetif.c | 109 struct pbuf *q = p; in ethernet_low_level_output() local 117 if (q->next == NULL) { in ethernet_low_level_output() 118 ret = esp_netif_transmit(esp_netif, q->payload, q->len); in ethernet_low_level_output() 121 q = pbuf_alloc(PBUF_RAW_TX, p->tot_len, PBUF_RAM); in ethernet_low_level_output() 122 if (q != NULL) { in ethernet_low_level_output() 125 q->l2_owner = NULL; in ethernet_low_level_output() 126 q->l2_buf = NULL; in ethernet_low_level_output() 128 pbuf_copy(q, p); in ethernet_low_level_output() 132 ret = esp_netif_transmit(esp_netif, q->payload, q->len); in ethernet_low_level_output() 134 pbuf_free(q); in ethernet_low_level_output()
|
D | wlanif.c | 133 struct pbuf *q = p; in low_level_output() local 136 if(q->next == NULL) { in low_level_output() 137 ret = esp_netif_transmit_wrap(esp_netif, q->payload, q->len, q); in low_level_output() 141 q = pbuf_alloc(PBUF_RAW_TX, p->tot_len, PBUF_RAM); in low_level_output() 142 if (q != NULL) { in low_level_output() 143 q->l2_owner = NULL; in low_level_output() 144 pbuf_copy(q, p); in low_level_output() 148 ret = esp_netif_transmit_wrap(esp_netif, q->payload, q->len, q); in low_level_output() 150 pbuf_free(q); in low_level_output()
|
/hal_espressif-2.7.6/components/wpa_supplicant/test/ |
D | test_crypto.c | 388 struct crypto_ec_point *q = crypto_ec_point_init(e); variable 394 TEST_ASSERT_NOT_NULL(q); 405 TEST_ASSERT(crypto_ec_point_mul(e, p, (crypto_bignum *) &num, q) == 0); //q = 3p 410 TEST_ASSERT(crypto_ec_point_cmp(e, q, r) == 0); 414 crypto_ec_point_deinit(q, 1); 427 struct crypto_ec_point *q = crypto_ec_point_init(e); variable 433 TEST_ASSERT_NOT_NULL(q); 444 TEST_ASSERT(crypto_ec_point_mul(e, p, (crypto_bignum *) &num, q) == 0); 448 TEST_ASSERT(crypto_ec_point_add(e, q, r, r) == 0); 454 crypto_ec_point_deinit(q, 1); [all …]
|
/hal_espressif-2.7.6/components/mqtt/weekend_test/ |
D | mqtt_publish_test.py | 151 for q in [0, 1]: 156 test_single_config(dut1, transport, qos, 0, 5, q) 158 if broker_host[transport].startswith('192.168') and qos > 0 and q == 0: 160 test_single_config(dut1, transport, qos, 5, 50, q) 162 test_single_config(dut1, transport, qos, 1000, 10, q) 164 test_single_config(dut1, transport, qos, 2, 200, q) 167 test_single_config(dut1, transport, qos, 2, 5, q) 168 test_single_config(dut1, transport, qos, 50, 1, q) 169 test_single_config(dut1, transport, qos, 10, 20, q) 172 test_single_config(dut1, transport, qos, 5, 10, q) [all …]
|
/hal_espressif-2.7.6/examples/protocols/mqtt/tcp/ |
D | mqtt_tcp_example_test.py | 32 q,addr = s.accept() 33 q.settimeout(30) 40 data = q.recv(1024) 44 q.send(data) 46 data = q.recv(1024) 50 q.send(data)
|
/hal_espressif-2.7.6/components/mdns/ |
D | mdns.c | 818 static uint16_t _mdns_append_question(uint8_t * packet, uint16_t * index, mdns_out_question_t * q) in _mdns_append_question() argument 823 if (q->host) { in _mdns_append_question() 824 str[str_index++] = q->host; in _mdns_append_question() 826 if (q->service) { in _mdns_append_question() 827 str[str_index++] = q->service; in _mdns_append_question() 829 if (q->proto) { in _mdns_append_question() 830 str[str_index++] = q->proto; in _mdns_append_question() 832 if (q->domain) { in _mdns_append_question() 833 str[str_index++] = q->domain; in _mdns_append_question() 841 part_length += _mdns_append_u16(packet, index, q->type); in _mdns_append_question() [all …]
|
/hal_espressif-2.7.6/examples/protocols/asio/chat_client/ |
D | asio_chat_client_test.py | 32 q,addr = s.accept() 34 q.settimeout(30) 35 q.send(g_msg_to_client) 36 data = q.recv(1024) 41 g_client_response = q.recv(1024)
|
/hal_espressif-2.7.6/components/xtensa/esp32s3/include/xtensa/config/ |
D | tie.h | 168 XCHAL_SA_REG(s,0,0,2,0, q0,16,16,16,0x1008, q,0 ,128,0,0,0) \ 169 XCHAL_SA_REG(s,0,0,2,0, q1,16,16,16,0x1009, q,1 ,128,0,0,0) \ 170 XCHAL_SA_REG(s,0,0,2,0, q2,16,16,16,0x100A, q,2 ,128,0,0,0) \ 171 XCHAL_SA_REG(s,0,0,2,0, q3,16,16,16,0x100B, q,3 ,128,0,0,0) \ 172 XCHAL_SA_REG(s,0,0,2,0, q4,16,16,16,0x100C, q,4 ,128,0,0,0) \ 173 XCHAL_SA_REG(s,0,0,2,0, q5,16,16,16,0x100D, q,5 ,128,0,0,0)
|
/hal_espressif-2.7.6/examples/protocols/https_server/wss_server/main/ |
D | keep_alive.c | 40 QueueHandle_t q; member 113 if (xQueueReceive(keep_alive_storage->q, (void *) &client_action, in keep_alive_task() 155 vQueueDelete(keep_alive_storage->q); in keep_alive_task() 176 keep_alive_storage->q = xQueueCreate(queue_size, sizeof(client_fd_action_t)); in wss_keep_alive_start() 188 xQueueSendToBack(h->q, &stop, 0); in wss_keep_alive_stop() 195 if (xQueueSendToBack(h->q, &client_fd_action, 0) == pdTRUE) { in wss_keep_alive_add_client() 204 if (xQueueSendToBack(h->q, &client_fd_action, 0) == pdTRUE) { in wss_keep_alive_remove_client() 214 if (xQueueSendToBack(h->q, &client_fd_action, 0) == pdTRUE) { in wss_keep_alive_client_is_active()
|
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/smp/include/ |
D | p_256_ecc_pp.h | 68 void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength); 72 #define ECC_PointMult(q, p, n, keyLength) ECC_PointMult_Bin_NAF(q, p, n, keyLength) argument
|
/hal_espressif-2.7.6/components/wpa_supplicant/src/tls/ |
D | libtommath.h | 1573 mp_digit q; in mp_count_bits() local 1584 q = a->dp[a->used - 1]; in mp_count_bits() 1585 while (q > ((mp_digit) 0)) { in mp_count_bits() 1587 q >>= ((mp_digit) 1); in mp_count_bits() 1634 mp_int ta, tb, tq, q; in mp_div() local 1656 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) { in mp_div() 1673 ((res = mp_add(&q, &tq, &q)) != MP_OKAY)) { in mp_div() 1687 mp_exch(c, &q); in mp_div() 1695 mp_clear_multi(&ta, &tb, &tq, &q, NULL); in mp_div() 1717 mp_int q, x, y, t1, t2; in mp_div() local [all …]
|
D | rsa.c | 23 struct bignum *q; /* prime q (factor of n) */ member 142 key->q = bignum_init(); in crypto_rsa_import_private_key() 148 key->p == NULL || key->q == NULL || key->dmp1 == NULL || in crypto_rsa_import_private_key() 197 pos = crypto_rsa_parse_integer(pos, end, key->q); in crypto_rsa_import_private_key() 286 if (bignum_exptmod(tmp, key->dmq1, key->q, b) < 0) in crypto_rsa_exptmod() 295 if (bignum_mul(tmp, key->q, tmp) < 0 || in crypto_rsa_exptmod() 346 bignum_deinit(key->q); in crypto_rsa_free()
|
/hal_espressif-2.7.6/components/wpa_supplicant/src/crypto/ |
D | libtommath.h | 1577 mp_digit q; in mp_count_bits() local 1588 q = a->dp[a->used - 1]; in mp_count_bits() 1589 while (q > ((mp_digit) 0)) { in mp_count_bits() 1591 q >>= ((mp_digit) 1); in mp_count_bits() 1638 mp_int ta, tb, tq, q; in mp_div() local 1660 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) { in mp_div() 1677 ((res = mp_add(&q, &tq, &q)) != MP_OKAY)) { in mp_div() 1691 mp_exch(c, &q); in mp_div() 1699 mp_clear_multi(&ta, &tb, &tq, &q, NULL); in mp_div() 1721 mp_int q, x, y, t1, t2; in mp_div() local [all …]
|
/hal_espressif-2.7.6/components/lwip/apps/dhcpserver/ |
D | dhcpserver.c | 477 struct pbuf *p, *q; in send_offer() local 502 q = p; in send_offer() 504 while (q != NULL) { in send_offer() 505 data = (u8_t *)q->payload; in send_offer() 507 for (i = 0; i < q->len; i++) { in send_offer() 519 q = q->next; in send_offer() 556 struct pbuf *p, *q; in send_nak() local 580 q = p; in send_nak() 582 while (q != NULL) { in send_nak() 583 data = (u8_t *)q->payload; in send_nak() [all …]
|
/hal_espressif-2.7.6/tools/test_mkdfu/1/ |
D | dfu.bin | 4 …qG(���J���3{���v��s[�<g����f�ØFV�x�xB�-���s}]uGAn>n(�-;��}-��IA4��:���.R2����j��&_… 8 …e�%B[`�]p5o��8w��/��#am�(R2z�4���Tūux�;��ʘ����|�ИW�?�q@ʹ�h��&�?�Pnf� \ʈ����h q���X��F~J… 24 ��w�~!j[�����"���iR�K@l+s��� ���Ɵ�!pm�:Ɨ'��,IJ<m0c���߬�+�q|��4]Z�#p=�E�8�ȆC�m��V�7�֚�… 32 ��4��*ʩh��e��y�����\?��'��E�_9�.F'Bo�U�/2ȶ��Ɇ���d�,�bkCW�~H�q����⏢�=��V� ϴU|9��Կ��؈-… 39 …q"� mg�7�=��`&oĞ`gl��Ҽ6��}���P�u�63�P?DU�m�`��@�V��A��$����Η�85�OU�x̀I�?�upQ��b9�@_ٳp… 41 �����L��4�\�?t1�ig�46�^q������`~�hJ=N��B�U�7�P� ����٫�6l����S����I��:�,7v��k��n;����E… 43 …��m�fx�<I5�-�#�����i�����#�?��긯�o��i��s��ι�2�9Zz�e��o ��/ T�^��#+O,C�q�L�P�y��@��W�!�…
|
/hal_espressif-2.7.6/examples/protocols/esp_local_ctrl/ |
D | README.md | 49 Select properties to set (0 to re-read, 'q' to quit) : 0 58 Select properties to set (0 to re-read, 'q' to quit) : 2,4 69 Select properties to set (0 to re-read, 'q' to quit) : q
|
/hal_espressif-2.7.6/tools/test_apps/protocols/mqtt/publish_connect_test/ |
D | app_test.py | 364 for q in [0, 1]: 368 start_publish_case(transport, qos, 0, 5, q) 369 start_publish_case(transport, qos, 2, 5, q) 370 start_publish_case(transport, qos, 50, 1, q) 371 start_publish_case(transport, qos, 10, 20, q)
|
/hal_espressif-2.7.6/ |
D | export.fish | 4 if not set -q IDF_PATH 38 if set -q added_path_variables[1]
|
/hal_espressif-2.7.6/components/bt/test/ |
D | test_smp.c | 61 extern void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength);
|
/hal_espressif-2.7.6/components/partition_table/ |
D | project_include.cmake | 39 ${idf_path}/components/partition_table/parttool.py -q
|
/hal_espressif-2.7.6/components/wpa_supplicant/src/common/ |
D | sae.c | 397 struct crypto_bignum *q; in get_random_qr_qnr() local 406 q = crypto_bignum_init_set(tmp, prime_len); in get_random_qr_qnr() 407 if (!q) in get_random_qr_qnr() 409 res = crypto_bignum_legendre(q, prime_bn); in get_random_qr_qnr() 412 *qr = q; in get_random_qr_qnr() 414 *qnr = q; in get_random_qr_qnr() 416 crypto_bignum_deinit(q, 0); in get_random_qr_qnr()
|
/hal_espressif-2.7.6/zephyr/esp32c3/src/bt/ |
D | esp_bt_adapter.c | 546 struct bt_queue_t *q = (struct bt_queue_t *) queue; in queue_delete_wrapper() local 548 if (q != NULL) { in queue_delete_wrapper() 549 esp_bt_free(q->pool); in queue_delete_wrapper() 550 esp_bt_free(q); in queue_delete_wrapper()
|