Home
last modified time | relevance | path

Searched refs:remaining (Results 1 – 25 of 43) sorted by relevance

12

/hal_espressif-2.7.6/components/openssl/library/
Dssl_bio.c147 int remaining = b->size - b->offset; in BIO_write() local
148 if (remaining <= 0) { in BIO_write()
152 int len_to_write = dlen > remaining?remaining:dlen; in BIO_write()
170 int remaining = peer->dlen - peer->roffset; in BIO_read() local
171 if (remaining <= 0) { in BIO_read()
175 int len_to_read = remaining > len ? len : remaining; in BIO_read()
/hal_espressif-2.7.6/components/esp32c3/
Desp_hmac.c101 size_t remaining = message_len % SHA256_BLOCK_SZ; in esp_hmac_calculate() local
108 if (remaining >= SHA256_BLOCK_SZ - SHA256_PAD_SZ) { in esp_hmac_calculate()
109 write_and_padd(block, message_bytes, remaining); in esp_hmac_calculate()
114 write_and_padd(block, message_bytes, remaining); in esp_hmac_calculate()
/hal_espressif-2.7.6/components/heap/
Dheap_task_info.c40 size_t remaining = params->max_blocks; in heap_caps_get_per_task_info() local
104 if (blocks && remaining > 0) { in heap_caps_get_per_task_info()
120 --remaining; in heap_caps_get_per_task_info()
126 return params->max_blocks - remaining; in heap_caps_get_per_task_info()
Dheap_tlsf.c283 block_header_t* remaining = in block_split() local
291 tlsf_assert(block_to_ptr(remaining) == align_ptr(block_to_ptr(remaining), ALIGN_SIZE) in block_split()
295 block_set_size(remaining, remain_size); in block_split()
296 tlsf_assert(block_size(remaining) >= block_size_min && "block split with invalid size"); in block_split()
299 block_mark_as_free(remaining); in block_split()
324 return remaining; in block_split()
/hal_espressif-2.7.6/examples/protocols/http_server/simple/main/
Dmain.c117 int ret, remaining = req->content_len; in echo_post_handler() local
119 while (remaining > 0) { in echo_post_handler()
122 MIN(remaining, sizeof(buf)))) <= 0) { in echo_post_handler()
132 remaining -= ret; in echo_post_handler()
/hal_espressif-2.7.6/examples/protocols/http_server/file_serving/main/
Dfile_server.c346 int remaining = req->content_len; in upload_post_handler() local
348 while (remaining > 0) { in upload_post_handler()
350 ESP_LOGI(TAG, "Remaining size : %d", remaining); in upload_post_handler()
352 if ((received = httpd_req_recv(req, buf, MIN(remaining, SCRATCH_BUFSIZE))) <= 0) { in upload_post_handler()
384 remaining -= received; in upload_post_handler()
/hal_espressif-2.7.6/tools/esp_prov/
Desp_prov.py234 remaining = result['count']
235 while remaining:
236 count = [remaining, readlen][remaining > readlen]
240 remaining -= count
/hal_espressif-2.7.6/components/esp_http_server/
DKconfig27 … This sets the size of the temporary buffer used to receive and discard any remaining data that is
31 …If the remaining data is larger than the available buffer size, the buffer will be filled in multi…
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_core/
Dproxy_server.c1248 int32_t remaining = K_FOREVER; in gatt_proxy_advertise() local
1255 return remaining; in gatt_proxy_advertise()
1260 return remaining; in gatt_proxy_advertise()
1267 remaining = NODE_ID_TIMEOUT - active; in gatt_proxy_advertise()
1269 active, remaining); in gatt_proxy_advertise()
1294 if (remaining > max_timeout || remaining < 0) { in gatt_proxy_advertise()
1295 remaining = max_timeout; in gatt_proxy_advertise()
1299 BT_DBG("Advertising %d ms for net_idx 0x%04x", remaining, sub->net_idx); in gatt_proxy_advertise()
1301 return remaining; in gatt_proxy_advertise()
Dsettings.c1464 int32_t timeout = 0, remaining = 0; in schedule_store() local
1486 remaining = k_delayed_work_remaining_get(&pending_store); in schedule_store()
1487 if (remaining && remaining < timeout) { in schedule_store()
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dcmac_mode.c238 size_t remaining = TC_AES_BLOCK_SIZE - s->leftover_offset; in tc_cmac_final() local
240 _set(&s->leftover[s->leftover_offset], 0, remaining); in tc_cmac_final()
/hal_espressif-2.7.6/components/spi_flash/
Dflash_ops.c367 int32_t remaining = len; in spi_flash_write_inner()
370 int32_t read_len = MIN(sizeof(before_buf), remaining); in spi_flash_write_inner()
422 remaining -= read_len; in spi_flash_write_inner()
618 int32_t remaining = size; in spi_flash_write_encrypted() local
621 int32_t read_len = MIN(sizeof(read_buf), remaining); in spi_flash_write_encrypted()
671 remaining -= read_len; in spi_flash_write_encrypted()
/hal_espressif-2.7.6/docs/_static/diagrams/ring-buffer/
Dring_buffer_wrap_byte_buf.diag19 #Wrap around remaining data
Dring_buffer_read_ret_byte_buf.diag24 #Read remaining data
/hal_espressif-2.7.6/docs/en/api-reference/system/
Dhimem.rst8 …limited in size, only the first 4MiB can be used as such. Access to the remaining memory is still …
18 …ctions like ``malloc()``, but it allows you to use the himem api to map any of the remaining memory
Dsystem.rst113 …uentially by adding 0 and 1 (respectively) to the base MAC address. The remaining two interfaces (…
123 …MAC address. This is generated by adding 0 to the base MAC address. The remaining interface (Wi-Fi…
/hal_espressif-2.7.6/components/spiffs/
Dspiffsgen.py159 remaining = self.obj_ids_limit
166 if (remaining >= 2):
167 for i in range(remaining):
168 if i == remaining - 2:
/hal_espressif-2.7.6/examples/get-started/sample_project/
DREADME.md22 Below is short explanation of remaining files in the project folder.
/hal_espressif-2.7.6/examples/get-started/hello_world/
DREADME.md23 Below is short explanation of remaining files in the project folder.
/hal_espressif-2.7.6/docs/en/api-reference/protocols/
Desp_serial_slave_link.rst71 …read the TX buffer num, and take off the used buffer number to know how many buffers are remaining.
78 data is remaining.
/hal_espressif-2.7.6/examples/protocols/mqtt/ssl_psk/
DREADME.md61 D (4730) MQTT_CLIENT: mqtt_message_receive: read "remaining length" byte: 0x2
/hal_espressif-2.7.6/docs/en/api-reference/bluetooth/nimble/
Dindex.rst33 …y initialized, then :cpp:func:`esp_nimble_hci_init` can be called for the remaining initialization.
/hal_espressif-2.7.6/docs/en/api-guides/
Dmesh.rst261 3. Formation of remaining layers
263 The remaining idle nodes will connect with intermediate parent nodes within range thereby forming a…
353 **2.** Once node A becomes the root node, the remaining nodes begin forming upstream connections la…
383 …strongest router RSSI will be elected as the new root node** whilst the remaining second layer nod…
398 …ected as the root node and begins accepting downstream connections. The remaining second layer nod…
401 …If a designated root node breaks down, the remaining nodes **will not autonomously attempt to elec…
433 …nning for beacon frames (see `Automatic Root Node Selection`_) **whilst remaining connected to the…
514 …ld nodes, it will forward the packet to its parent node and each of its remaining child nodes whil…
520 … from one of its child nodes, it will forward the packet to each of its remaining child nodes whil…
576 …ch Count** which indicates the number of beacon frame intervals (TBTTs) remaining until the networ…
Dmemory-types.rst19 …possible to use all available DRAM for static allocations - however the remaining DRAM is still av…
124 …In single core mode, remaining RTC fast memory is added to the heap unless the option :ref:`CONFIG…
/hal_espressif-2.7.6/docs/en/get-started/
Dwindows-setup.rst69 For the remaining Getting Started steps, we're going to use the Windows Command Prompt.

12