Home
last modified time | relevance | path

Searched refs:current (Results 1 – 9 of 9) sorted by relevance

/crypto/bn/
A Dbn_ctx.c33 BN_POOL_ITEM *head, *current, *tail; member
292 p->head = p->current = p->tail = NULL; in BN_POOL_init()
305 p->current = p->head->next; in BN_POOL_finish()
307 p->head = p->current; in BN_POOL_finish()
332 p->head = p->current = p->tail = item; in BN_POOL_get()
336 p->current = item; in BN_POOL_get()
345 p->current = p->head; in BN_POOL_get()
347 p->current = p->current->next; in BN_POOL_get()
348 return p->current->vals + ((p->used++) % BN_CTX_POOL_SIZE); in BN_POOL_get()
357 bn_check_top(p->current->vals + offset); in BN_POOL_release()
[all …]
/crypto/stack/
A Dstack.c160 static ossl_inline int compute_growth(int target, int current) in compute_growth() argument
164 while (current < target) { in compute_growth()
165 if (current >= max_nodes) in compute_growth()
168 current = safe_muldiv_int(current, 8, 5, &err); in compute_growth()
171 if (current >= max_nodes) in compute_growth()
172 current = max_nodes; in compute_growth()
174 return current; in compute_growth()
/crypto/asn1/
A Dasn1_lib.c439 ASN1_UTF8STRING *current; in ossl_sk_ASN1_UTF8STRING2text() local
449 current = sk_ASN1_UTF8STRING_value(text, i); in ossl_sk_ASN1_UTF8STRING2text()
452 length += ASN1_STRING_length(current); in ossl_sk_ASN1_UTF8STRING2text()
461 current = sk_ASN1_UTF8STRING_value(text, i); in ossl_sk_ASN1_UTF8STRING2text()
462 length = ASN1_STRING_length(current); in ossl_sk_ASN1_UTF8STRING2text()
467 strncpy(p, (const char *)ASN1_STRING_get0_data(current), length); in ossl_sk_ASN1_UTF8STRING2text()
/crypto/ec/curve448/
A Dcurve448.c560 uint64_t current = scalar->limb[0] & 0xFFFF; in recode_wnaf() local
580 current += (uint32_t)((scalar->limb[w / B_OVER_16] in recode_wnaf()
584 while (current & 0xFFFF) { in recode_wnaf()
585 uint32_t pos = NUMTRAILINGZEROS((uint32_t)current); in recode_wnaf()
586 uint32_t odd = (uint32_t)current >> pos; in recode_wnaf()
599 current -= delta * (1 << pos); in recode_wnaf()
604 current >>= 16; in recode_wnaf()
606 assert(current == 0); in recode_wnaf()
/crypto/bio/
A Dbss_dgram_pair.c1154 static ossl_inline size_t compute_rbuf_growth(size_t target, size_t current) in compute_rbuf_growth() argument
1158 while (current < target) { in compute_rbuf_growth()
1159 if (current >= max_rbuf_size) in compute_rbuf_growth()
1162 current = safe_muldiv_size_t(current, 8, 5, &err); in compute_rbuf_growth()
1165 if (current >= max_rbuf_size) in compute_rbuf_growth()
1166 current = max_rbuf_size; in compute_rbuf_growth()
1168 return current; in compute_rbuf_growth()
/crypto/ts/
A Dts_rsp_verify.c569 GENERAL_NAME *current = sk_GENERAL_NAME_value(gen_names, i); in ts_find_name() local
570 found = GENERAL_NAME_cmp(current, name) == 0; in ts_find_name()
A Dts_rsp_sign.c516 ASN1_OBJECT *current = sk_ASN1_OBJECT_value(ctx->policies, i); in ts_RESP_get_policy() local
517 if (!OBJ_cmp(requested, current)) in ts_RESP_get_policy()
518 policy = current; in ts_RESP_get_policy()
/crypto/engine/
A DREADME.md18 identifier that, in the current API, "lingers". These cipher description +
57 callers in the current API, support no such controls.
/crypto/des/asm/
A Ddes_enc.m4612 ! final permutation for current block.

Completed in 53 milliseconds