Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/bn/
H A Dbn_lib.c334 int bn_words; in BN_copy() local
338 bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top; in BN_copy()
342 if (bn_wexpand(a, bn_words) == NULL) in BN_copy()
346 memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words); in BN_copy()