| /external/boringssl/src/crypto/fipsmodule/bn/ |
| jacobi.c | 133 if (!BN_nnmod(B, B, A, ctx)) {
|
| div.c | 389 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx) { 406 return BN_nnmod(r, r, m, ctx); 425 return BN_nnmod(r, r, m, ctx); 462 if (!BN_nnmod(r, t, m, ctx)) { 478 /* r->neg == 0, thus we don't need BN_nnmod */ 487 if (!BN_nnmod(r, a, m, ctx)) { 556 return BN_nnmod(r, r, m, ctx);
|
| gcd.c | 388 if (!BN_nnmod(R, Y, n, ctx)) { 419 if (!BN_nnmod(a_reduced, a_reduced, n, ctx)) { 601 if (!BN_nnmod(R, Y, n, ctx)) {
|
| sqrt.c | 129 if (!BN_nnmod(A, a, p, ctx)) { 320 if (!BN_nnmod(t, A, p, ctx)) {
|
| exponentiation.c | 468 if (!BN_nnmod(val[0], a, m, ctx)) { 616 if (!BN_nnmod(val[0], a, m, ctx)) { 894 !BN_nnmod(new_a, a, m, ctx)) { [all...] |
| bn_test.cc | 448 // Test BN_nnmod. 456 ASSERT_TRUE(BN_nnmod(ret.get(), a.get(), b.get(), ctx)); 484 ASSERT_TRUE(BN_nnmod(a_tmp.get(), a.get(), m.get(), ctx)); 485 ASSERT_TRUE(BN_nnmod(b_tmp.get(), b.get(), m.get(), ctx)); 523 ASSERT_TRUE(BN_nnmod(a_tmp.get(), a.get(), m.get(), ctx)); [all...] |
| /libcore/luni/src/main/java/java/math/ |
| NativeBN.java | 112 public static native void BN_nnmod(long r, long a, long m); 113 // int BN_nnmod(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx);
|
| BigInt.java | 316 NativeBN.BN_nnmod(r.bignum, a.bignum, m.bignum);
|
| /external/boringssl/src/crypto/fipsmodule/ecdsa/ |
| ecdsa.c | 196 if (!BN_nnmod(u1, X, order, ctx)) { 315 if (!BN_nnmod(r, tmp, order, ctx)) {
|
| /external/boringssl/src/crypto/fipsmodule/ec/ |
| p256-x86_64.c | 254 if (!BN_nnmod(mod, p_scalar, &group->order, ctx)) { 400 if (!BN_nnmod(tmp_scalar, g_scalar, &group->order, ctx)) {
|
| simple.c | 152 if (!BN_nnmod(tmp_a, a, p, ctx)) { 164 if (!BN_nnmod(&group->b, b, p, ctx)) {
|
| p224-64.c | [all...] |
| p256-64.c | [all...] |
| /libcore/luni/src/main/native/ |
| java_math_NativeBN.cpp | 484 if (!BN_nnmod(toBigNum(r), toBigNum(a), toBigNum(m), ctx.get())) { 551 NATIVE_METHOD(NativeBN, BN_nnmod, "(JJJ)V"),
|
| /external/boringssl/src/include/openssl/ |
| bn.h | 520 /* BN_nnmod is a non-negative modulo function. It acts like |BN_mod|, but 0 <= 523 OPENSSL_EXPORT int BN_nnmod(BIGNUM *rem, const BIGNUM *numerator, [all...] |