Home
last modified time | relevance | path

Searched refs:queue_len (Results 1 – 10 of 10) sorted by relevance

/external/mbedtls/library/
Dpoly1305.c265 ctx->queue_len = 0U; in mbedtls_poly1305_starts()
279 if ((remaining > 0U) && (ctx->queue_len > 0U)) { in mbedtls_poly1305_update()
280 queue_free_len = (POLY1305_BLOCK_SIZE_BYTES - ctx->queue_len); in mbedtls_poly1305_update()
286 memcpy(&ctx->queue[ctx->queue_len], in mbedtls_poly1305_update()
290 ctx->queue_len += ilen; in mbedtls_poly1305_update()
295 memcpy(&ctx->queue[ctx->queue_len], in mbedtls_poly1305_update()
299 ctx->queue_len = 0U; in mbedtls_poly1305_update()
319 ctx->queue_len = remaining; in mbedtls_poly1305_update()
330 if (ctx->queue_len > 0U) { in mbedtls_poly1305_finish()
332 ctx->queue[ctx->queue_len] = 1U; in mbedtls_poly1305_finish()
[all …]
/external/openthread/third_party/mbedtls/repo/library/
Dpoly1305.c265 ctx->queue_len = 0U; in mbedtls_poly1305_starts()
279 if ((remaining > 0U) && (ctx->queue_len > 0U)) { in mbedtls_poly1305_update()
280 queue_free_len = (POLY1305_BLOCK_SIZE_BYTES - ctx->queue_len); in mbedtls_poly1305_update()
286 memcpy(&ctx->queue[ctx->queue_len], in mbedtls_poly1305_update()
290 ctx->queue_len += ilen; in mbedtls_poly1305_update()
295 memcpy(&ctx->queue[ctx->queue_len], in mbedtls_poly1305_update()
299 ctx->queue_len = 0U; in mbedtls_poly1305_update()
319 ctx->queue_len = remaining; in mbedtls_poly1305_update()
330 if (ctx->queue_len > 0U) { in mbedtls_poly1305_finish()
332 ctx->queue[ctx->queue_len] = 1U; in mbedtls_poly1305_finish()
[all …]
/external/rust/android-crates-io/crates/futures-util/src/stream/stream/
Dbuffered.rs87 let queue_len = self.in_progress_queue.len(); in size_hint() localVariable
89 let lower = lower.saturating_add(queue_len); in size_hint()
91 Some(x) => x.checked_add(queue_len), in size_hint()
Dbuffer_unordered.rs89 let queue_len = self.in_progress_queue.len(); in size_hint() localVariable
91 let lower = lower.saturating_add(queue_len); in size_hint()
93 Some(x) => x.checked_add(queue_len), in size_hint()
/external/mbedtls/include/mbedtls/
Dpoly1305.h43 size_t MBEDTLS_PRIVATE(queue_len); /** The number of bytes stored in 'queue'. */
/external/openthread/third_party/mbedtls/repo/include/mbedtls/
Dpoly1305.h43 size_t MBEDTLS_PRIVATE(queue_len); /** The number of bytes stored in 'queue'. */
/external/mesa3d/src/gallium/drivers/zink/ci/
Dzink-venus-lvp-flakes.txt22 # glx-destroycontext-1: ../../src/xcb_conn.c:215: write_vec: Assertion `!c->out.queue_len' failed.
Dzink-lvp-flakes.txt21 # glx-destroycontext-1: ../../src/xcb_conn.c:215: write_vec: Assertion `!c->out.queue_len' failed.
/external/libnl/lib/route/
Dneightbl.c311 COPY_ENTRY(QUEUE_LEN, queue_len); in neightbl_msg_parser()
/external/wpa_supplicant_8/src/ap/
Dieee802_11.c1860 unsigned int queue_len; in auth_sae_process_commit() local
1875 queue_len = dl_list_len(&hapd->sae_commit_queue); in auth_sae_process_commit()
1876 eloop_register_timeout(0, queue_len * 10000, auth_sae_process_commit, in auth_sae_process_commit()
1886 unsigned int queue_len; in auth_sae_queue() local
1889 queue_len = dl_list_len(&hapd->sae_commit_queue); in auth_sae_queue()
1890 if (queue_len >= 15) { in auth_sae_queue()
1899 queue_len); in auth_sae_queue()
1934 eloop_register_timeout(0, queue_len * 10000, auth_sae_process_commit, in auth_sae_queue()