Searched refs:queue_len (Results 1 - 6 of 6) sorted by relevance
/third_party/mbedtls/library/ |
H A D | poly1305.c | 277 ctx->queue_len = 0U; in mbedtls_poly1305_starts() 291 if ((remaining > 0U) && (ctx->queue_len > 0U)) { in mbedtls_poly1305_update() 292 queue_free_len = (POLY1305_BLOCK_SIZE_BYTES - ctx->queue_len); in mbedtls_poly1305_update() 298 memcpy(&ctx->queue[ctx->queue_len], in mbedtls_poly1305_update() 302 ctx->queue_len += ilen; in mbedtls_poly1305_update() 307 memcpy(&ctx->queue[ctx->queue_len], in mbedtls_poly1305_update() 311 ctx->queue_len = 0U; in mbedtls_poly1305_update() 331 ctx->queue_len = remaining; in mbedtls_poly1305_update() 342 if (ctx->queue_len > 0U) { in mbedtls_poly1305_finish() 344 ctx->queue[ctx->queue_len] in mbedtls_poly1305_finish() [all...] |
/third_party/mbedtls/include/mbedtls/ |
H A D | poly1305.h | 55 size_t MBEDTLS_PRIVATE(queue_len); /** The number of bytes stored in 'queue'. */
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec.c | 789 s->queue_len = 0; in ff_rtp_reset_packet_queue() 815 s->queue_len++; in enqueue_packet() 835 if (s->queue_len <= 0) in rtp_parse_queued_packet() 853 s->queue_len--; in rtp_parse_queued_packet() 926 if (s->queue_len >= s->queue_size) { in rtp_parse_one_packet()
|
H A D | rtpdec.h | 171 int queue_len; ///< The number of packets in queue member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | ieee802_11.c | 1302 unsigned int queue_len; in auth_sae_process_commit() local 1317 queue_len = dl_list_len(&hapd->sae_commit_queue); in auth_sae_process_commit() 1318 eloop_register_timeout(0, queue_len * 10000, auth_sae_process_commit, in auth_sae_process_commit() 1328 unsigned int queue_len; in auth_sae_queue() local 1331 queue_len = dl_list_len(&hapd->sae_commit_queue); in auth_sae_queue() 1332 if (queue_len >= 15) { in auth_sae_queue() 1340 MACSTR " for processing (queue_len %u)", MAC2STR(mgmt->sa), in auth_sae_queue() 1341 queue_len); in auth_sae_queue() 1376 eloop_register_timeout(0, queue_len * 10000, auth_sae_process_commit, in auth_sae_queue()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | ieee802_11.c | 1648 unsigned int queue_len; in auth_sae_process_commit() local 1663 queue_len = dl_list_len(&hapd->sae_commit_queue); in auth_sae_process_commit() 1664 eloop_register_timeout(0, queue_len * 10000, auth_sae_process_commit, in auth_sae_process_commit() 1674 unsigned int queue_len; in auth_sae_queue() local 1677 queue_len = dl_list_len(&hapd->sae_commit_queue); in auth_sae_queue() 1678 if (queue_len >= 15) { in auth_sae_queue() 1686 MACSTR_SEC " for processing (queue_len %u)", MAC2STR_SEC(mgmt->sa), in auth_sae_queue() 1687 queue_len); in auth_sae_queue() 1722 eloop_register_timeout(0, queue_len * 10000, auth_sae_process_commit, in auth_sae_queue()
|
Completed in 27 milliseconds