OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BN_add
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_add.c
1
/* crypto/bn/
bn_add
.c */
64
int
BN_add
(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
/external/openssl/crypto/bn/
bn_add.c
1
/* crypto/bn/
bn_add
.c */
64
int
BN_add
(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
/libcore/luni/src/main/java/java/math/
NativeBN.java
94
public static native void
BN_add
(long r, long a, long b);
95
// int
BN_add
(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
BigInt.java
256
NativeBN.
BN_add
(r.bignum, a.bignum, b.bignum);
261
NativeBN.
BN_add
(this.bignum, this.bignum, a.bignum);
Completed in 69 milliseconds