/hal_espressif-latest/components/wpa_supplicant/src/tls/ |
D | libtommath.h | 118 int used, alloc, sign; member 124 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO) 125 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO) 126 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO) 130 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1) 219 if (a->used > b->used) { in s_mp_add() 220 min = b->used; in s_mp_add() 221 max = a->used; in s_mp_add() 224 min = a->used; in s_mp_add() 225 max = b->used; in s_mp_add() [all …]
|
D | tlsv1_server.c | 139 int used; in tlsv1_server_handshake() local 155 used = tlsv1_record_receive(&conn->rl, pos, end - pos, in tlsv1_server_handshake() 157 if (used < 0) { in tlsv1_server_handshake() 163 if (used == 0) { in tlsv1_server_handshake() 186 pos += used; in tlsv1_server_handshake() 265 int used; in tlsv1_server_decrypt() local 277 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt() 279 if (used < 0) { in tlsv1_server_decrypt() 284 if (used == 0) { in tlsv1_server_decrypt() 304 pos += used; in tlsv1_server_decrypt() [all …]
|
D | tlsv1_client.c | 172 int used; in tlsv1_client_handshake() local 208 used = tlsv1_record_receive(&conn->rl, pos, end - pos, in tlsv1_client_handshake() 210 if (used < 0) { in tlsv1_client_handshake() 216 if (used == 0) { in tlsv1_client_handshake() 252 pos += used; in tlsv1_client_handshake() 335 int used; in tlsv1_client_decrypt() local 366 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt() 368 if (used < 0) { in tlsv1_client_decrypt() 373 if (used == 0) { in tlsv1_client_decrypt() 402 pos += used; in tlsv1_client_decrypt() [all …]
|
/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | wpabuf.c | 47 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow() 73 if (buf->used + add_len > buf->size) { in wpabuf_resize() 76 nbuf = os_realloc(buf->buf, buf->used + add_len); in wpabuf_resize() 79 memset(nbuf + buf->used, 0, add_len); in wpabuf_resize() 85 buf->used + add_len); in wpabuf_resize() 91 sizeof(struct wpabuf) + buf->used, 0, in wpabuf_resize() 95 buf->used + add_len); in wpabuf_resize() 99 memset(nbuf + sizeof(struct wpabuf) + buf->used, 0, in wpabuf_resize() 105 buf->size = buf->used + add_len; in wpabuf_resize() 155 buf->used = len; in wpabuf_alloc_ext_data() [all …]
|
/hal_espressif-latest/components/efuse/esp32h2/ |
D | esp_efuse_table_v0.0_v1.1.csv | 6 …epresents whether hardware random number k is forced used in ESDCA. 1: force used. 0: not force us…
|
/hal_espressif-latest/components/bt/common/osi/ |
D | allocator.c | 45 bool used; member 65 mem_dbg_max_size_section[i].used = false; in osi_mem_dbg_init() 100 if (mem_dbg_max_size_section[i].used) { in osi_mem_dbg_record() 165 if (mem_dbg_max_size_section[index].used) { in osi_men_dbg_set_section_start() 169 mem_dbg_max_size_section[index].used = true; in osi_men_dbg_set_section_start() 181 if (!mem_dbg_max_size_section[index].used) { in osi_men_dbg_set_section_end() 186 mem_dbg_max_size_section[index].used = false; in osi_men_dbg_set_section_end()
|
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/ |
D | fastpbkdf2.c | 60 static inline void md_pad(uint8_t *block, size_t blocksz, size_t used, size_t msg) in md_pad() argument 62 memset(block + used, 0, blocksz - used - 4); in md_pad() 63 block[used] = 0x80; in md_pad() 312 uint32_t used; in sha1_finish() local 318 used = ctx->MBEDTLS_PRIVATE(total)[0] & 0x3F; in sha1_finish() 320 ctx->MBEDTLS_PRIVATE(buffer)[used++] = 0x80; in sha1_finish() 322 if (used <= 56) { in sha1_finish() 324 memset(ctx->MBEDTLS_PRIVATE(buffer) + used, 0, 56 - used); in sha1_finish() 327 memset(ctx->MBEDTLS_PRIVATE(buffer) + used, 0, 64 - used); in sha1_finish()
|
/hal_espressif-latest/components/newlib/ |
D | Kconfig | 78 prompt "Timers used for gettimeofday function" 81 This setting defines which hardware timers are used to 85 and RTC timers are used, timekeeping will continue in deep sleep. 88 - If only high-resolution timer (systimer) is used, gettimeofday will 91 - If only RTC timer is used, timekeeping will continue in 95 - If no timers are used, gettimeofday and time functions 97 - When RTC is used for timekeeping, two RTC_STORE registers are 98 used to keep time in deep sleep mode.
|
/hal_espressif-latest/components/wpa_supplicant/include/utils/ |
D | wpabuf.h | 28 size_t used; /* length of data in the buffer */ member 65 return buf->used; in wpabuf_len() 75 return buf->size - buf->used; in wpabuf_tailroom() 161 buf->size = buf->used = len; in wpabuf_set()
|
/hal_espressif-latest/tools/esptool_py/docs/en/espsecure/ |
D | index.rst | 18 An external Hardware Security Module (HSM) can be used for remote signing of images in secure boot … 22 The following command should be used to get an image signed using an external HSM. :: 51 populated corresponding to the HSM used. 61 # to be used to generate signature. 71 # Slot number to be used 74 # Label of the object used to store the private key 77 # Label of the object used to store corresponding public key
|
/hal_espressif-latest/components/esp_rom/patches/ |
D | esp_rom_tlsf.c | 95 static void integrity_walker(void* ptr, size_t size, int used, void* user) in integrity_walker() argument 116 const size_t actual_free_block_size = used ? this_block_size : in integrity_walker() 119 void* ptr_block = used ? (void*)block + block_start_offset : in integrity_walker() 122 tlsf_insist_no_assert(s_poison_check_region(ptr_block, actual_free_block_size, !used, true)); in integrity_walker()
|
/hal_espressif-latest/components/esp_system/port/soc/esp32/ |
D | Kconfig.tracemem | 18 … of memory that can't be used for general purposes anymore. Disable this if you do not know 29 … of memory that can't be used for general purposes anymore. Disable this if you do not know 32 # Memory to reverse for trace, used in linker script
|
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/ |
D | Kconfig.rtc | 5 Choose which clock is used as RTC clock source. 34 - 136000 Hz if internal RC oscillator is used as clock source. For this use value 1024. 35 - 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.
|
/hal_espressif-latest/components/esp_hw_support/port/esp32s3/ |
D | Kconfig.rtc | 5 Choose which clock is used as RTC clock source. 36 - 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024. 37 - 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c2/ |
D | Kconfig.rtc | 5 Choose which clock is used as RTC clock source. 32 - 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024. 33 - 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/ |
D | Kconfig.rtc | 5 Choose which clock is used as RTC clock source. 36 - 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024. 37 - 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.
|
/hal_espressif-latest/components/esp_rom/esp32s2/ld/ |
D | esp32s2.rom.newlib-data.ld | 2 * These are the .bss/.data symbols used by newlib functions present in ESP32-S2 ROM. 7 * This is done so that ROM functions are always used instead of the ones provided by libc.a.
|
D | esp32s2.rom.newlib-nano.ld | 8 used by newlib functions, and esp32s2.rom.newlib-funcs.ld for the list 14 used instead of the ones provided by libc.a.
|
/hal_espressif-latest/components/esp_rom/esp32/ld/ |
D | esp32.rom.newlib-locale.ld | 3 used when compiling with newlib version 3, since locale implementation is 9 used instead of the ones provided by libc.a.
|
D | esp32.rom.newlib-data.ld | 1 /* These are the .bss/.data symbols used by newlib functions present in ESP32 ROM. 8 used instead of the ones provided by libc.a.
|
D | esp32.rom.redefined.ld | 2 ROM Functions defined in this file are not used in ESP-IDF as is, 4 This file is not used when linking ESP-IDF and is intended for reference only
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | advanced-options.rst | 6 The following advanced configuration options can be used for all esptool commands (they are placed … 25 …JTAG-Serial (used for example for ESP chips connected through the USB-JTAG-Serial peripheral). Usu… 34 …* ``--after hard_reset`` is the default. The DTR serial control line is used to reset the chip int… 74 …eans that the SPI flash can be connected to other pins, or esptool can be used to communicate with… 81 …se <espefuse-spi-flash-pins>`. These are the same SPI flash pins that are used during a normal boo… 118 …m list of pins to be configured for the SPI flash connection. This can be used to emulate the flas… 124 …eral (not HSPI) will be used unless the ``CLK`` pin value is set to 14 (HSPI CLK), in which case t… 134 …me.txt``. Arguments can be separated by newlines or spaces, quotes can be used to enclose argument… 155 …=0x303A --port-filter pid=0x1001`` matches Espressif USB-Serial/JTAG unit used by multiple chips b…
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/ |
D | Kconfig.rtc | 5 Choose which clock is used as RTC clock source. 45 - 136000 Hz if internal RC oscillator is used as clock source. For this use value 1024. 46 - 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.
|
/hal_espressif-latest/components/esp_pm/ |
D | Kconfig | 11 RTOS ticks and timers used for timekeeping. 33 This feature can be used to analyze which locks are preventing the chip 43 If enabled, some GPIOs will be used to signal events such as RTOS ticks, 46 This feature is intended to be used when analyzing/debugging behavior 56 This feature is intended to be used when lower power consumption is needed 65 This feature is intended to be used when lower power consumption is needed 90 This option is invisible to users, and it is only used for ci testing, 127 …!!! Please confirm the peripherals used in your application and their sleep retention support stat…
|
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/ |
D | spi-flash-modes.rst | 8 …s control how many I/O pins are used for communication with the attached SPI flash chip, and which… 20 | ``qio`` | Quad I/O | 4 pins used for address & data | Fastest. … 22 | ``qout`` | Quad Output | 4 pins used for data. | Approx 15% slower than ``qio``. … 24 | ``dio`` | Dual I/O | 2 pins used for address & data | Approx 45% slower than ``qio``. … 26 | ``dout`` | Dual Output | 2 pins used for data. | Approx 50% slower than ``qio``. … 53 …s introduced "Dual SPI". In Dual SPI modes, the MOSI & MISO pins are both used to read or write da… 68 …ntroduced "Quad SPI" mode. This mode added two additional pins (otherwise used for flash chip ``WP… 110 This only determines the mode which is used for the initial boot from reset. Software may then conf…
|