/libcore/luni/src/main/java/java/math/ |
NativeBN.java | 106 public static native void BN_exp(long r, long a, long p); 107 // int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
|
BigInt.java | 282 NativeBN.BN_exp(r.bignum, a.bignum, p.bignum);
|
/external/vboot_reference/host/lib/ |
util_misc.c | 84 BN_exp(B, Big2, Big32, bn_ctx); /* B = 2^32 */ 95 BN_exp(R, Big2, NnumBits, bn_ctx);
|
/external/vboot_reference/utility/ |
dumpRSAPublicKey.c | 78 BN_exp(B, Big2, Big32, bn_ctx); /* B = 2^32 */ 89 BN_exp(R, Big2, NnumBits, bn_ctx);
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 534 BN_exp(toBigNum(r), toBigNum(a), toBigNum(p), ctx.get()); 591 NATIVE_METHOD(NativeBN, BN_exp, "(JJJ)V"),
|
/external/boringssl/src/include/openssl/ |
bn.h | [all...] |
/external/boringssl/src/crypto/bn/ |
bn_test.cc | 294 message(bc_file.get(), "BN_exp"); 1107 if (!BN_exp(e.get(), a.get(), b.get(), ctx) || 1193 if (!BN_exp(e.get(), a.get(), b.get(), ctx) | [all...] |
exponentiation.c | 139 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) { [all...] |