Home
last modified time | relevance | path

Searched refs:bltmp_pos (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/crypto/openssl/crypto/rand/
H A Ddrbg_ctr.c123 if (ctr->bltmp_pos) { in ctr_BCC_update()
124 size_t left = 16 - ctr->bltmp_pos; in ctr_BCC_update()
128 memcpy(ctr->bltmp + ctr->bltmp_pos, in, left); in ctr_BCC_update()
131 ctr->bltmp_pos = 0; in ctr_BCC_update()
145 memcpy(ctr->bltmp + ctr->bltmp_pos, in, inlen); in ctr_BCC_update()
146 ctr->bltmp_pos += inlen; in ctr_BCC_update()
153 if (ctr->bltmp_pos) { in ctr_BCC_final()
154 memset(ctr->bltmp + ctr->bltmp_pos, 0, 16 - ctr->bltmp_pos); in ctr_BCC_final()
191 ctr->bltmp_pos = 8; in ctr_df()
H A Drand_local.h151 size_t bltmp_pos; member