/libcore/luni/src/main/java/java/math/ |
NativeBN.java | 109 public static native void BN_div(long dv, long rem, long m, long d); 110 // int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);
|
BigInt.java | 310 NativeBN.BN_div(quot, rem, dividend.bignum, divisor.bignum);
|
/external/boringssl/src/crypto/bn/ |
bn_test.cc | 270 !BN_div(ret.get(), remainder.get(), lshift1.get(), two.get(), ctx) || 284 !BN_div(ret.get(), nullptr /* rem */, lshift1.get(), two.get(), ctx) || 348 !BN_div(ret.get(), remainder.get(), square.get(), a.get(), ctx) || 403 !BN_div(ret.get(), remainder.get(), product.get(), a.get(), ctx) || 406 !BN_div(ret.get(), remainder.get(), product.get(), b.get(), ctx) || 426 !BN_div(ret.get(), ret2.get(), a.get(), b.get(), ctx) || [all...] |
div.c | 181 /* BN_div computes dv := num / divisor, rounding towards 192 int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
|
sqrt.c | 467 if (!BN_div(tmp, NULL, in, estimate, ctx) ||
|
gcd.c | 525 if (!BN_div(D, M, A, B, ctx)) {
|
exponentiation.c | 248 if (!BN_div(r, NULL, t, m, ctx)) { [all...] |
/external/boringssl/src/crypto/rsa/ |
rsa.c | 624 if (!BN_div(&lcm, NULL, &lcm, &gcd, ctx) || 749 !BN_div(multiple, NULL, totient, rsa->n, ctx) || 751 !BN_div(totient, rem, totient, multiple, ctx)) { 784 !BN_div(rsa->p, NULL, rsa->n, rsa->q, ctx) ||
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 476 if (!BN_div(toBigNum(dv), toBigNum(rem), toBigNum(m), toBigNum(d), ctx.get())) { 537 NATIVE_METHOD(NativeBN, BN_div, "(JJJJ)V"),
|
/external/boringssl/src/crypto/dh/ |
check.c | 163 if (!BN_div(t1, t2, dh->p, dh->q, ctx)) {
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
attestation_record.cpp | 182 BN_div(hi.get(), lo.get(), num, uint_max.get(), ctx.get());
|
/external/boringssl/src/include/openssl/ |
bn.h | 423 /* BN_div divides |numerator| by |divisor| and places the result in |quotient| 428 OPENSSL_EXPORT int BN_div(BIGNUM *quotient, BIGNUM *rem, 532 /* BN_mod is a helper macro that calls |BN_div| and discards the quotient. */ 534 BN_div(NULL, (rem), (numerator), (divisor), (ctx)) [all...] |
/external/tpm2/ |
MathFunctions.c | 310 if (BN_div(bnQ, bnR, bnN, bnD, context) != 1)
|
CpriRSA.c | 76 if (BN_div(bnQ, bnQr, bnN, bnP, context) != 1) 208 if(BN_div(bnQ, bnQr, bnN, bnP, context) != 1) [all...] |
CpriECC.c | [all...] |
/external/boringssl/src/crypto/dsa/ |
dsa.c | 359 !BN_div(r0, NULL, test, q, ctx)) {
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/ |
OpensslLib.inf | 237 $(OPENSSL_PATH)/crypto/bn/bn_div.c
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_openssl.c | 1262 res = BN_div((BIGNUM *) c, NULL, (const BIGNUM *) a, [all...] |
/prebuilts/abi-dumps/vndk/current/arm/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/arm64/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/mips/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/mips64/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/x86/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/x86_64/source-based/ |
libcrypto.so.lsdump.gz | |