Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/bn/
H A Dbn_div.c273 int num_n, div_n, num_neg; in bn_div_fixed_top() local
306 num_n = snum->top; in bn_div_fixed_top()
308 if (num_n <= div_n) { in bn_div_fixed_top()
312 memset(&(snum->d[num_n]), 0, (div_n - num_n + 1) * sizeof(BN_ULONG)); in bn_div_fixed_top()
313 snum->top = num_n = div_n + 1; in bn_div_fixed_top()
316 loop = num_n - div_n; in bn_div_fixed_top()
322 wnumtop = &(snum->d[num_n - 1]); in bn_div_fixed_top()