Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 132) sorted by relevance

123456

/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dhmac_prng.c84 tc_hmac_set_key(&prng->h, prng->key, sizeof(prng->key)); in update()
87 (void)tc_hmac_init(&prng->h); in update()
88 (void)tc_hmac_update(&prng->h, prng->v, sizeof(prng->v)); in update()
89 (void)tc_hmac_update(&prng->h, &separator0, sizeof(separator0)); in update()
92 (void)tc_hmac_update(&prng->h, data, datalen); in update()
95 (void)tc_hmac_update(&prng->h, additional_data, additional_datalen); in update()
98 (void)tc_hmac_final(prng->key, sizeof(prng->key), &prng->h); in update()
101 (void)tc_hmac_set_key(&prng->h, prng->key, sizeof(prng->key)); in update()
104 (void)tc_hmac_init(&prng->h); in update()
105 (void)tc_hmac_update(&prng->h, prng->v, sizeof(prng->v)); in update()
[all …]
Dsha256.c183 unsigned int a, b, c, d, e, f, g, h; in compress() local
191 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress()
196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
198 h = g; g = f; f = e; e = d + t1; in compress()
209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
211 h = g; g = f; f = e; e = d + t1; in compress()
216 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
/hal_espressif-3.7.0/components/bt/porting/ext/tinycrypt/src/
Dhmac_prng.c84 (void)tc_hmac_init(&prng->h); in update()
85 (void)tc_hmac_update(&prng->h, prng->v, sizeof(prng->v)); in update()
86 (void)tc_hmac_update(&prng->h, &separator0, sizeof(separator0)); in update()
87 (void)tc_hmac_update(&prng->h, e, len); in update()
88 (void)tc_hmac_final(prng->key, sizeof(prng->key), &prng->h); in update()
90 (void)tc_hmac_set_key(&prng->h, prng->key, sizeof(prng->key)); in update()
93 (void)tc_hmac_init(&prng->h); in update()
94 (void)tc_hmac_update(&prng->h, prng->v, sizeof(prng->v)); in update()
95 (void)tc_hmac_final(prng->v, sizeof(prng->v), &prng->h); in update()
98 (void)tc_hmac_init(&prng->h); in update()
[all …]
Dsha256.c183 unsigned int a, b, c, d, e, f, g, h; in compress() local
191 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress()
196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
198 h = g; g = f; f = e; e = d + t1; in compress()
209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
211 h = g; g = f; f = e; e = d + t1; in compress()
216 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
/hal_espressif-3.7.0/components/bt/common/osi/
Dhash_functions.c49 void hash_function_blob(const unsigned char *s, unsigned int len, hash_key_t h) in hash_function_blob() argument
57 h[j] = ((h[j] << 7) | (h[j-1] >> 1)) + h[j]; in hash_function_blob()
61 h[0] = (h[0] << 7) + h[0] + *s++; in hash_function_blob()
/hal_espressif-3.7.0/components/soc/
DREADME.md5 - `xxx_reg.h` - defines registers related to the hardware
6 - `xxx_struct.h` - hardware description in C `struct`
7 - `xxx_channel.h` - definitions for hardware with multiple channels
8 - `xxx_caps.h` - features/capabilities of the hardware
9 - `xxx_pins.h` - pin definitions
10 …- `xxx_periph.h/*.c` - includes all headers related to a peripheral; declaration and definition o…
/hal_espressif-3.7.0/components/newlib/
Dlocks.c96 SemaphoreHandle_t h = (SemaphoreHandle_t)(*lock); in _lock_close() local
98 configASSERT(xSemaphoreGetMutexHolder(h) == NULL); /* mutex should not be held */ in _lock_close()
100 vSemaphoreDelete(h); in _lock_close()
112 SemaphoreHandle_t h = (SemaphoreHandle_t)(*lock); in lock_acquire_generic() local
113 if (!h) { in lock_acquire_generic()
119 h = (SemaphoreHandle_t)(*lock); in lock_acquire_generic()
120 configASSERT(h != NULL); in lock_acquire_generic()
133 success = xSemaphoreTakeFromISR(h, &higher_task_woken); in lock_acquire_generic()
144 success = xSemaphoreTakeRecursive(h, delay); in lock_acquire_generic()
146 success = xSemaphoreTake(h, delay); in lock_acquire_generic()
[all …]
/hal_espressif-3.7.0/components/esp_rom/
DREADME.md11h`. This can prevent you from using a nonexistent ROM function for a specific `<target>`. Thus ROM…
15 #include "esp32/rom/uart.h"
17 #include "esp32c3/rom/uart.h"
19 #include "esp32s3/rom/uart.h"
23 …mmonly used ROM functions. They're declared in `esp_rom/include/esp_rom_xxx.h`. Unlike the origina…
33 …M, but ESP32S2 hasn't. We have a header file `esp_rom/<target>/esp_rom_caps.h` declaring the featu…
41 │   ├── esp_rom_caps.h
53 │   │   ├── cache.h
54 │   │   ├── efuse.h
55 │   │   ├── esp_flash.h
[all …]
/hal_espressif-3.7.0/components/esp_wifi/src/
Dwifi_netif.c56 static void wifi_free(void *h, void* buffer) in wifi_free() argument
63 static esp_err_t wifi_transmit(void *h, void *buffer, size_t len) in wifi_transmit() argument
65 wifi_netif_driver_t driver = h; in wifi_transmit()
69 static esp_err_t wifi_transmit_wrap(void *h, void *buffer, size_t len, void *netstack_buf) in wifi_transmit_wrap() argument
71 wifi_netif_driver_t driver = h; in wifi_transmit_wrap()
93 void esp_wifi_destroy_if_driver(wifi_netif_driver_t h) in esp_wifi_destroy_if_driver() argument
95 if (h) { in esp_wifi_destroy_if_driver()
96 esp_wifi_internal_reg_rxcb(h->wifi_if, NULL); // ignore the potential error in esp_wifi_destroy_if_driver()
98 s_wifi_netifs[h->wifi_if] = NULL; in esp_wifi_destroy_if_driver()
100 free(h); in esp_wifi_destroy_if_driver()
/hal_espressif-3.7.0/components/esp_wifi/test_md5/
Dtest_md5.sh68 check_md5 ${IDF_PATH}/components/esp_wifi/include/esp_wifi.h g_esp_wifi_md5
69 check_md5 ${IDF_PATH}/components/esp_wifi/include/esp_wifi_he.h g_esp_wifi_he_md5
70 check_md5 ${IDF_PATH}/components/esp_wifi/include/esp_private/wifi_os_adapter.h g_wifi_osi_funcs_md5
71 check_md5 ${IDF_PATH}/components/esp_wifi/include/esp_wifi_crypto_types.h g_wifi_crypto_funcs_md5
72 check_md5 ${IDF_PATH}/components/esp_wifi/include/esp_wifi_types.h g_wifi_type_md5
73 check_md5 ${IDF_PATH}/components/esp_wifi/include/esp_wifi_he_types.h g_wifi_he_type_md5
74 check_md5 ${IDF_PATH}/components/wpa_supplicant/esp_supplicant/src/esp_wifi_driver.h g_wifi_supplic…
/hal_espressif-3.7.0/components/esp_common/src/
Desp_err_to_name.c.in9 #include <string.h>
10 #if __has_include(<bsd/string.h>)
12 #include <bsd/string.h>
14 #include "esp_err.h"
15 #if __has_include("soc/soc.h")
16 #include "soc/soc.h"
/hal_espressif-3.7.0/components/heap/
Dinternals.md3 … provided through [esp_heap_caps.h](./include/esp_heap_caps.h) and [esp_heap_caps_init.h](./includ…
5 …IRAM by using the `IRAM_ATTR` defined in [esp_attr.h](./../../components/esp_common/include/esp_at…
/hal_espressif-3.7.0/components/bootloader_support/include/
Desp_flash_data_types.h6 #warning esp_flash_data_types.h has been merged into esp_flash_partitions.h, please include esp_fla…
/hal_espressif-3.7.0/components/spi_flash/include/
Desp_spi_flash.h6 #warning esp_spi_flash.h is deprecated, please use spi_flash_mmap.h instead
/hal_espressif-3.7.0/components/mbedtls/port/include/esp32/
Dsha.h20 #warning esp32/sha.h is deprecated, please use sha_parallel_engine.h instead
/hal_espressif-3.7.0/components/mbedtls/port/include/esp32s2/
Dsha.h19 #warning esp32s2/sha.h is deprecated, please use sha/sha_dma.h instead
/hal_espressif-3.7.0/tools/esptool_py/docs/en/esptool/
Dindex.rst6 Use ``esptool.py -h`` to see a summary of all available commands and command line options.
8 … all options for a particular command, append ``-h`` to the command name. ie ``esptool.py write_fl…
Dadvanced-commands.rst91 * ``--bytes 1`` sends the most common ``RDSR`` command (05h) and returns a single byte of status.
92 * ``--bytes 2`` sends both ``RDSR`` (05h) and ``RDSR2`` (35h), reads one byte of status from each, …
93 * ``--bytes 3`` sends ``RDSR`` (05h), ``RDSR2`` (35h), and ``RDSR3`` (15h), reads one byte of statu…
110 …or ``read_flash_status`` and causes a mix of ``WRSR`` (01h), ``WRSR2`` (31h), and ``WRSR3`` (11h) …
113h) command before writing the status. This may allow non-volatile status register bits to be set o…
/hal_espressif-3.7.0/components/esp_netif/lwip/
Desp_netif_lwip_internal.h88 esp_err_t (*driver_transmit)(void *h, void *buffer, size_t len);
89 esp_err_t (*driver_transmit_wrap)(void *h, void *buffer, size_t len, void *pbuf);
90 void (*driver_free_rx_buffer)(void *h, void* buffer);
/hal_espressif-3.7.0/components/esp_netif/include/
Desp_netif_types.h217 …esp_err_t (*post_attach)(esp_netif_t *netif, esp_netif_iodriver_handle h); /*!< post attach functi…
226 esp_err_t (*transmit)(void *h, void *buffer, size_t len); /*!< transmit function pointer */
227 …esp_err_t (*transmit_wrap)(void *h, void *buffer, size_t len, void *netstack_buffer); /*!< transmi…
228 void (*driver_free_rx_buffer)(void *h, void* buffer); /*!< free rx buffer function pointer */
/hal_espressif-3.7.0/components/wpa_supplicant/test/
DCMakeLists.txt8 # Calculate MD5 value of header file esp_wifi_driver.h
9 file(MD5 ${esp_supplicant_dir}/esp_supplicant/src/esp_wifi_driver.h WIFI_SUPPLICANT_MD5)
/hal_espressif-3.7.0/components/esp_netif/include/lwip/
Desp_netif_net_stack.h60 esp_netif_recv_ret_t ethernetif_input(void *h, void *buffer, size_t len, void *l2_buff);
90 esp_netif_recv_ret_t wlanif_input(void *h, void *buffer, size_t len, void* l2_buff);
/hal_espressif-3.7.0/components/hal/
DREADME.md10 …n is actually two levels -- often somtimes `xxx_hal.h` includes a lower-level header from a `xxx_l…
14 …s with same names to header files whose interfaces they implement, ex. `xxx_hal.c` for `xxx_hal.h`.
16 As mentioned previously, the lower-level abstraction header `xxx_ll.h` resides in this directory, s…
/hal_espressif-3.7.0/components/heap/include/
Dheap_trace.inc14 #include <string.h>
15 #include <sdkconfig.h>
16 #include "soc/soc_memory_layout.h"
17 #include "esp_attr.h"
18 #include "esp_cpu.h"
19 #include "esp_macros.h"
/hal_espressif-3.7.0/components/esp_system/include/esp_private/
Dpanic_internal.h63 void panic_print_hex(int h);
68 #define panic_print_hex(h) argument

123456