Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 26) sorted by relevance

12

/hal_espressif-latest/components/mbedtls/port/sha/dma/
Desp_sha1.c82 ctx->total[0] = 0; in mbedtls_sha1_starts()
83 ctx->total[1] = 0; in mbedtls_sha1_starts()
135 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
138 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha1_update()
139 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha1_update()
141 if ( ctx->total[0] < (uint32_t) ilen ) { in mbedtls_sha1_update()
142 ctx->total[1]++; in mbedtls_sha1_update()
197 high = ( ctx->total[0] >> 29 ) in mbedtls_sha1_finish()
198 | ( ctx->total[1] << 3 ); in mbedtls_sha1_finish()
199 low = ( ctx->total[0] << 3 ); in mbedtls_sha1_finish()
[all …]
Desp_sha256.c145 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
148 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha256_update()
149 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha256_update()
151 if ( ctx->total[0] < (uint32_t) ilen ) { in mbedtls_sha256_update()
152 ctx->total[1]++; in mbedtls_sha256_update()
207 high = ( ctx->total[0] >> 29 ) in mbedtls_sha256_finish()
208 | ( ctx->total[1] << 3 ); in mbedtls_sha256_finish()
209 low = ( ctx->total[0] << 3 ); in mbedtls_sha256_finish()
214 last = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
Desp_sha512.c193 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
196 ctx->total[0] += (uint64_t) ilen; in mbedtls_sha512_update()
198 if ( ctx->total[0] < (uint64_t) ilen ) { in mbedtls_sha512_update()
199 ctx->total[1]++; in mbedtls_sha512_update()
266 high = ( ctx->total[0] >> 61 ) in mbedtls_sha512_finish()
267 | ( ctx->total[1] << 3 ); in mbedtls_sha512_finish()
268 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish()
273 last = (size_t)( ctx->total[0] & 0x7F ); in mbedtls_sha512_finish()
/hal_espressif-latest/components/mbedtls/port/sha/block/
Desp_sha1.c85 ctx->total[0] = 0; in mbedtls_sha1_starts()
86 ctx->total[1] = 0; in mbedtls_sha1_starts()
132 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
135 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha1_update()
136 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha1_update()
138 if ( ctx->total[0] < (uint32_t) ilen ) { in mbedtls_sha1_update()
139 ctx->total[1]++; in mbedtls_sha1_update()
197 high = ( ctx->total[0] >> 29 ) in mbedtls_sha1_finish()
198 | ( ctx->total[1] << 3 ); in mbedtls_sha1_finish()
199 low = ( ctx->total[0] << 3 ); in mbedtls_sha1_finish()
[all …]
Desp_sha256.c149 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
152 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha256_update()
153 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha256_update()
155 if ( ctx->total[0] < (uint32_t) ilen ) { in mbedtls_sha256_update()
156 ctx->total[1]++; in mbedtls_sha256_update()
216 high = ( ctx->total[0] >> 29 ) in mbedtls_sha256_finish()
217 | ( ctx->total[1] << 3 ); in mbedtls_sha256_finish()
218 low = ( ctx->total[0] << 3 ); in mbedtls_sha256_finish()
223 last = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
Desp_sha512.c189 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
192 ctx->total[0] += (uint64_t) ilen; in mbedtls_sha512_update()
194 if ( ctx->total[0] < (uint64_t) ilen ) { in mbedtls_sha512_update()
195 ctx->total[1]++; in mbedtls_sha512_update()
263 high = ( ctx->total[0] >> 61 ) in mbedtls_sha512_finish()
264 | ( ctx->total[1] << 3 ); in mbedtls_sha512_finish()
265 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish()
270 last = (size_t)( ctx->total[0] & 0x7F ); in mbedtls_sha512_finish()
/hal_espressif-latest/components/mbedtls/port/sha/parallel_engine/
Desp_sha256.c105 ctx->total[0] = 0; in mbedtls_sha256_starts()
106 ctx->total[1] = 0; in mbedtls_sha256_starts()
287 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
290 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha256_update()
291 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha256_update()
293 if ( ctx->total[0] < (uint32_t) ilen ) { in mbedtls_sha256_update()
294 ctx->total[1]++; in mbedtls_sha256_update()
346 high = ( ctx->total[0] >> 29 ) in mbedtls_sha256_finish()
347 | ( ctx->total[1] << 3 ); in mbedtls_sha256_finish()
348 low = ( ctx->total[0] << 3 ); in mbedtls_sha256_finish()
[all …]
Desp_sha512.c129 ctx->total[0] = 0; in mbedtls_sha512_starts()
130 ctx->total[1] = 0; in mbedtls_sha512_starts()
323 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
326 ctx->total[0] += (uint64_t) ilen; in mbedtls_sha512_update()
328 if ( ctx->total[0] < (uint64_t) ilen ) { in mbedtls_sha512_update()
329 ctx->total[1]++; in mbedtls_sha512_update()
384 high = ( ctx->total[0] >> 61 ) in mbedtls_sha512_finish()
385 | ( ctx->total[1] << 3 ); in mbedtls_sha512_finish()
386 low = ( ctx->total[0] << 3 ); in mbedtls_sha512_finish()
391 last = (size_t)( ctx->total[0] & 0x7F ); in mbedtls_sha512_finish()
Desp_sha1.c106 ctx->total[0] = 0; in mbedtls_sha1_starts()
107 ctx->total[1] = 0; in mbedtls_sha1_starts()
327 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
330 ctx->total[0] += (uint32_t) ilen; in mbedtls_sha1_update()
331 ctx->total[0] &= 0xFFFFFFFF; in mbedtls_sha1_update()
333 if ( ctx->total[0] < (uint32_t) ilen ) { in mbedtls_sha1_update()
334 ctx->total[1]++; in mbedtls_sha1_update()
386 high = ( ctx->total[0] >> 29 ) in mbedtls_sha1_finish()
387 | ( ctx->total[1] << 3 ); in mbedtls_sha1_finish()
388 low = ( ctx->total[0] << 3 ); in mbedtls_sha1_finish()
[all …]
/hal_espressif-latest/components/mbedtls/port/include/
Dsha256_alt.h46 uint32_t total[2]; /*!< number of bytes processed */ member
63 uint32_t total[2]; /*!< number of bytes processed */
Dsha1_alt.h47 uint32_t total[2]; /*!< number of bytes processed */ member
82 uint32_t total[2]; /*!< number of bytes processed */
Dsha512_alt.h48 uint64_t total[2]; /*!< number of bytes processed */ member
66 uint64_t total[2]; /*!< number of bytes processed */
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/
Dbitalloc.c271 OI_UINT32 total = 0; in adjustToFitBitpool() local
289 total += n; in adjustToFitBitpool()
292 count = (total & 0xFFFF) + (total >> 16); in adjustToFitBitpool()
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dfastpbkdf2.c318 used = ctx->MBEDTLS_PRIVATE(total)[0] & 0x3F; in sha1_finish()
339 high = (ctx->MBEDTLS_PRIVATE(total)[0] >> 29) in sha1_finish()
340 | (ctx->MBEDTLS_PRIVATE(total)[1] << 3); in sha1_finish()
341 low = (ctx->MBEDTLS_PRIVATE(total)[0] << 3); in sha1_finish()
/hal_espressif-latest/components/esp_rom/include/
Desp_rom_md5.h31 uint32_t total[2]; /*!< number of bytes processed */ member
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/
DKconfig.memory28 … This value is less than the chips total memory, as not all of it can be used for this purpose.
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/
DKconfig.memory28 … This value is less than the chips total memory, as not all of it can be used for this purpose.
/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/
Dsdp_discovery.c275 UINT16 total, cur_handles, orig; in process_service_search_rsp() local
280 BE_STREAM_TO_UINT16 (total, p_reply); in process_service_search_rsp()
292 if (total > sdp_cb.max_recs_per_search) { in process_service_search_rsp()
293 total = sdp_cb.max_recs_per_search; in process_service_search_rsp()
/hal_espressif-latest/components/bt/
DKconfig79 … a large free heap region when esp_bt_mem_release is called, total saving ~21kB or more of IRAM.
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/
Drom_functions.h58 uint32_t total[2]; // number of bytes processed member
/hal_espressif-latest/components/esp_timer/
DKconfig8 … number of times the timer has triggered, and the total time it took for the callback to run.
/hal_espressif-latest/components/mbedtls/port/mbedtls_rom/
Dmbedtls_rom_osi.h672 STRUCT_OFFSET_CHECK(mbedtls_sha1_context, total, 0);
686 STRUCT_OFFSET_CHECK(mbedtls_sha256_context, total, 0);
701 STRUCT_OFFSET_CHECK(mbedtls_sha512_context, MBEDTLS_PRIVATE(total), 0);
781 STRUCT_OFFSET_CHECK(mbedtls_md5_context, total, 0);
786 STRUCT_OFFSET_CHECK(mbedtls_md5_context, MBEDTLS_PRIVATE(total), 0);
/hal_espressif-latest/components/esp_psram/
DKconfig.spiram.common118 If enabled, 1/16 of the SPI RAM total size will be reserved for error-correcting code.
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/
Dfriend.c1519 uint32_t total = 0U; in friend_queue_has_space() local
1536 total += seg->seg_count; in friend_queue_has_space()
1544 return (CONFIG_BLE_MESH_FRIEND_QUEUE_SIZE - total) > seg_count; in friend_queue_has_space()
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dserial-protocol.rst206 …I flash <#spi-set-parameters>`__ | Six 32-bit words: id, total size in bytes, blo…
244 …I flash <#spi-set-parameters>`__ | Six 32-bit words: id, total size in bytes, blo…
437 All the values which are passed except total size are hardcoded, and most are not used when writing…
454 …e host should send back a 4 byte raw SLIP acknowledgement packet with the total number of bytes wh…

12