Symbol: bn_wexpand
lib/libcrypto/bn/bn_add.c
172
if (!bn_wexpand(r, rn + 1))
lib/libcrypto/bn/bn_add.c
197
if (!bn_wexpand(r, rn))
lib/libcrypto/bn/bn_div.c
293
if (!bn_wexpand(snum, sdiv->top + 2))
lib/libcrypto/bn/bn_div.c
299
if (!bn_wexpand(snum, snum->top + 1))
lib/libcrypto/bn/bn_div.c
330
if (!bn_wexpand(res, (loop + 1)))
lib/libcrypto/bn/bn_div.c
337
if (!bn_wexpand(tmp, (div_n + 1)))
lib/libcrypto/bn/bn_exp.c
338
if (!bn_wexpand(b, top))
lib/libcrypto/bn/bn_lib.c
230
return bn_wexpand(bn, words);
lib/libcrypto/bn/bn_lib.c
243
return bn_wexpand(bn, words);
lib/libcrypto/bn/bn_lib.c
294
if (!bn_wexpand(a, b->top))
lib/libcrypto/bn/bn_lib.c
363
if (!bn_wexpand(a, 1))
lib/libcrypto/bn/bn_lib.c
423
if (!bn_wexpand(a, i + 1))
lib/libcrypto/bn/bn_lib.c
575
if (!bn_wexpand(a, words) || !bn_wexpand(b, words))
lib/libcrypto/bn/bn_local.h
273
int bn_wexpand(BIGNUM *a, int words);
lib/libcrypto/bn/bn_mont.c
231
if (!bn_wexpand(N, 2))
lib/libcrypto/bn/bn_mont.c
377
if (!bn_wexpand(r, n_len))
lib/libcrypto/bn/bn_mont.c
387
if (!bn_wexpand(a, max))
lib/libcrypto/bn/bn_mont.c
528
if (!bn_wexpand(r, mctx->N.top))
lib/libcrypto/bn/bn_mont.c
533
if (!bn_wexpand(t, mctx->N.top * 2 + 2))
lib/libcrypto/bn/bn_mont.c
578
if (!bn_wexpand(r, mctx->N.top))
lib/libcrypto/bn/bn_mul.c
401
if (!bn_wexpand(rr, rn))
lib/libcrypto/bn/bn_shift.c
128
if (!bn_wexpand(r, count))
lib/libcrypto/bn/bn_shift.c
61
if (!bn_wexpand(r, count))
lib/libcrypto/bn/bn_sqr.c
327
if (!bn_wexpand(rr, r_len))
lib/libcrypto/bn/bn_word.c
169
if (!bn_wexpand(a, a->top + 1))
lib/libcrypto/bn/bn_word.c
237
if (!bn_wexpand(a, a->top + 1))
lib/libcrypto/ec/ec_field.c
113
if (!bn_wexpand(bn, fm->n))
lib/libcrypto/ec/ecp_methods.c
1099
if (!bn_wexpand(k, group_top + 2) ||
lib/libcrypto/ec/ecp_methods.c
1100
!bn_wexpand(lambda, group_top + 2))
lib/libcrypto/ec/ecp_methods.c
1131
if (!bn_wexpand(s->X, group_top) ||
lib/libcrypto/ec/ecp_methods.c
1132
!bn_wexpand(s->Y, group_top) ||
lib/libcrypto/ec/ecp_methods.c
1133
!bn_wexpand(s->Z, group_top) ||
lib/libcrypto/ec/ecp_methods.c
1134
!bn_wexpand(r->X, group_top) ||
lib/libcrypto/ec/ecp_methods.c
1135
!bn_wexpand(r->Y, group_top) ||
lib/libcrypto/ec/ecp_methods.c
1136
!bn_wexpand(r->Z, group_top))