Searched refs:dw (Results 1 – 3 of 3) 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 | 130 uint64_t dw = java_dw; in NativeBN_putULongInt() local 133 if (!BN_set_u64(a, dw)) { in NativeBN_putULongInt() 141 static void NativeBN_putLongInt(JNIEnv* env, jclass cls, jlong a, jlong dw) { in NativeBN_putLongInt() argument 142 if (dw >= 0) { in NativeBN_putLongInt() 143 NativeBN_putULongInt(env, cls, a, dw, JNI_FALSE); in NativeBN_putLongInt() 145 NativeBN_putULongInt(env, cls, a, -dw, JNI_TRUE); in NativeBN_putLongInt()
|
/libcore/ojluni/src/main/java/java/lang/invoke/ |
D | MethodType.java | 961 Wrapper dw = Wrapper.forPrimitiveType(dst); in canConvert() 968 if (src.isAssignableFrom(dw.wrapperType())) { in canConvert() 976 dw.isConvertibleFrom(Wrapper.forWrapperType(src))) { in canConvert()
|