Symbol: BN_div
lib/libcrypto/bn/bn.h
313
int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
lib/libcrypto/bn/bn.h
315
#define BN_mod(rem,m,d,ctx) BN_div(NULL,(rem),(m),(d),(ctx))
lib/libcrypto/bn/bn_div.c
433
LCRYPTO_ALIAS(BN_div);
lib/libcrypto/hidden/openssl/bn.h
139
LCRYPTO_UNUSED(BN_div);
regress/lib/libcrypto/bn/bn_mul_div.c
49
if (!BN_div(r, q, a, b, bn_ctx))
regress/lib/libcrypto/bn/bn_test.c
1062
CHECK_GOTO(BN_div(a, b, e, c, ctx));
regress/lib/libcrypto/bn/bn_test.c
1091
CHECK_GOTO(BN_div(a, b, e, c, ctx));
regress/lib/libcrypto/bn/bn_test.c
1120
CHECK_GOTO(BN_div(a, b, e, c, ctx));
regress/lib/libcrypto/bn/bn_test.c
1194
CHECK_GOTO(BN_div(a, b, e, c, ctx));
regress/lib/libcrypto/bn/bn_test.c
1784
CHECK_GOTO(BN_div(d, e, a, c, ctx));
regress/lib/libcrypto/bn/bn_test.c
424
if (BN_div(d, c, a, b, ctx)) {
regress/lib/libcrypto/bn/bn_test.c
440
CHECK_GOTO(BN_div(d, c, a, b, ctx));
regress/lib/libcrypto/bn/bn_test.c
666
CHECK_GOTO(BN_div(d, e, c, a, ctx));
regress/lib/libcrypto/bn/bn_test.c
713
CHECK_GOTO(BN_div(d, e, c, a, ctx));
regress/lib/libcrypto/bn/bn_test.c
902
CHECK_GOTO(BN_div(d, e, a, b, ctx));
regress/lib/libcrypto/bn/bn_test.c
985
CHECK_GOTO(BN_div(a, b, d, c, ctx));
usr.bin/dc/bcode.c
1078
bn_check(BN_div(r->number, NULL, b->number, a->number, bmachine.ctx));
usr.bin/dc/bcode.c
1146
bn_check(BN_div(rdiv->number, rmod->number,
usr.bin/dc/bcode.c
1243
bn_check(BN_div(r->number, NULL, one,
usr.bin/dc/bcode.c
1281
bn_check(BN_div(y, NULL, n->number, x, bmachine.ctx));
usr.bin/dc/bcode.c
380
bn_check(BN_div(n, NULL, n, a, bmachine.ctx));
usr.bin/dc/bcode.c
411
bn_check(BN_div(i, f, n->number, a, bmachine.ctx));