HomeSort by relevance Sort by last modified time
    Searched defs:BN_mul (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_mul.c 1 /* crypto/bn/bn_mul.c */
943 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
957 fprintf(stderr,"BN_mul %d * %d\n",a->top,b->top);
  /external/openssl/crypto/bn/
bn_mul.c 1 /* crypto/bn/bn_mul.c */
943 int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
957 fprintf(stderr,"BN_mul %d * %d\n",a->top,b->top);
  /libcore/luni/src/main/java/java/math/
NativeBN.java 103 public static native void BN_mul(long r, long a, long b);
104 // int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
BigInt.java 279 NativeBN.BN_mul(r.bignum, a.bignum, b.bignum);

Completed in 163 milliseconds