Searched refs:a0 (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/native/ |
D | java_math_NativeBN.cpp | 127 static void NativeBN_putULongInt(JNIEnv* env, jclass, jlong a0, jlong java_dw, jboolean neg) { in NativeBN_putULongInt() argument 128 if (!oneValidHandle(env, a0)) return; in NativeBN_putULongInt() 131 BIGNUM* a = toBigNum(a0); in NativeBN_putULongInt() 149 static int NativeBN_BN_dec2bn(JNIEnv* env, jclass, jlong a0, jstring str) { in NativeBN_BN_dec2bn() argument 150 if (!oneValidHandle(env, a0)) return -1; in NativeBN_BN_dec2bn() 155 BIGNUM* a = toBigNum(a0); in NativeBN_BN_dec2bn() 163 static int NativeBN_BN_hex2bn(JNIEnv* env, jclass, jlong a0, jstring str) { in NativeBN_BN_hex2bn() argument 164 if (!oneValidHandle(env, a0)) return -1; in NativeBN_BN_hex2bn() 169 BIGNUM* a = toBigNum(a0); in NativeBN_BN_hex2bn() 251 static jlong NativeBN_longInt(JNIEnv* env, jclass, jlong a0) { in NativeBN_longInt() argument [all …]
|