Searched refs:dw (Results 1 – 2 of 2) sorted by relevance
/libcore/luni/src/main/java/java/math/ |
D | NativeBN.java | 33 public static native void putLongInt(long a, long dw); in putLongInt() argument 34 public static native void putULongInt(long a, long dw, boolean neg); in putULongInt() argument
|
/libcore/luni/src/main/native/ |
D | java_math_NativeBN.cpp | 114 uint64_t dw = java_dw; in NativeBN_putULongInt() local 121 a->d[0] = dw; in NativeBN_putULongInt() 123 unsigned int hi = dw >> 32; // This shifts without sign extension. in NativeBN_putULongInt() 124 int lo = (int)dw; // This truncates implicitly. in NativeBN_putULongInt() 136 static void NativeBN_putLongInt(JNIEnv* env, jclass cls, jlong a, jlong dw) { in NativeBN_putLongInt() argument 137 if (dw >= 0) { in NativeBN_putLongInt() 138 NativeBN_putULongInt(env, cls, a, dw, JNI_FALSE); in NativeBN_putLongInt() 140 NativeBN_putULongInt(env, cls, a, -dw, JNI_TRUE); in NativeBN_putLongInt()
|