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

  /libcore/luni/src/main/java/java/math/
NativeBN.java 83 public static native void BN_set_negative(int b, int n);
84 // void BN_set_negative(BIGNUM *b, int n);
BigInt.java 247 if (val > 0) NativeBN.BN_set_negative(this.bignum, 0);
248 else if (val < 0) NativeBN.BN_set_negative(this.bignum, 1);
  /external/openssl/crypto/bn/
bn_lib.c 790 void BN_set_negative(BIGNUM *a, int b)

Completed in 59 milliseconds