HomeSort by relevance Sort by last modified time
    Searched refs:BN_gcd (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/main/java/java/math/
NativeBN.java 100 public static native void BN_gcd(long r, long a, long b);
101 // int BN_gcd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
BigInt.java 273 NativeBN.BN_gcd(r.bignum, a.bignum, b.bignum);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
expspeed.c 292 if (!BN_gcd(r,a,b,ctx)) goto err;
293 if (!BN_gcd(r,b,c,ctx)) goto err;
294 if (!BN_gcd(r,c,a,ctx)) goto err;
bn_gcd.c 1 /* crypto/bn/bn_gcd.c */
117 int BN_gcd(BIGNUM *r, const BIGNUM *in_a, const BIGNUM *in_b, BN_CTX *ctx)
bn.h 534 int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx);
    [all...]
  /external/openssl/crypto/bn/
expspeed.c 292 if (!BN_gcd(r,a,b,ctx)) goto err;
293 if (!BN_gcd(r,b,c,ctx)) goto err;
294 if (!BN_gcd(r,c,a,ctx)) goto err;
bn_gcd.c 1 /* crypto/bn/bn_gcd.c */
117 int BN_gcd(BIGNUM *r, const BIGNUM *in_a, const BIGNUM *in_b, BN_CTX *ctx)
bn.h 534 int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_gen.c 138 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
163 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
rsa_chk.c 117 r = BN_gcd(m, i, j, ctx);
  /external/openssl/crypto/rsa/
rsa_gen.c 138 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
163 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
rsa_chk.c 117 r = BN_gcd(m, i, j, ctx);
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 476 BN_gcd(toBigNum(r), toBigNum(a), toBigNum(b), ctx.get());
549 NATIVE_METHOD(NativeBN, BN_gcd, "(JJJ)V"),
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
bn.h 534 int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx);
    [all...]
  /external/openssl/include/openssl/
bn.h 534 int BN_gcd(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,BN_CTX *ctx);
    [all...]

Completed in 137 milliseconds