/libcore/ojluni/src/main/java/java/util/ |
D | SplittableRandom.java | 191 private static long mix64(long z) { in mix64() argument 192 z = (z ^ (z >>> 30)) * 0xbf58476d1ce4e5b9L; in mix64() 193 z = (z ^ (z >>> 27)) * 0x94d049bb133111ebL; in mix64() 194 return z ^ (z >>> 31); in mix64() 200 private static int mix32(long z) { in mix32() argument 201 z = (z ^ (z >>> 33)) * 0x62a9d9ed799705f5L; in mix32() 202 return (int)(((z ^ (z >>> 28)) * 0xcb24d0a5c88c35b3L) >>> 32); in mix32() 208 private static long mixGamma(long z) { in mixGamma() argument 209 z = (z ^ (z >>> 33)) * 0xff51afd7ed558ccdL; // MurmurHash3 mix constants in mixGamma() 210 z = (z ^ (z >>> 33)) * 0xc4ceb9fe1a85ec53L; in mixGamma() [all …]
|
/libcore/luni/src/main/native/ |
D | java_lang_StringToReal.cpp | 81 jdouble z); 266 static jdouble doubleAlgorithm(JNIEnv* env, uint64_t* f, int32_t length, jint e, jdouble z) { in doubleAlgorithm() argument 280 m = doubleMantissa (z); in doubleAlgorithm() 281 k = doubleExponent (z); in doubleAlgorithm() 376 && DOUBLE_TO_LONGBITS(z) != DOUBLE_NORMAL_MASK) in doubleAlgorithm() 381 --DOUBLE_TO_LONGBITS (z); in doubleAlgorithm() 399 --DOUBLE_TO_LONGBITS (z); in doubleAlgorithm() 408 --DOUBLE_TO_LONGBITS (z); in doubleAlgorithm() 413 ++DOUBLE_TO_LONGBITS (z); in doubleAlgorithm() 419 --DOUBLE_TO_LONGBITS (z); in doubleAlgorithm() [all …]
|
D | cbigint.h | 92 uint64_t doubleMantissa(jdouble z); 96 int32_t doubleExponent(jdouble z); 103 uint32_t floatMantissa(jfloat z); 105 int32_t floatExponent(jfloat z);
|
D | cbigint.cpp | 632 doubleMantissa (jdouble z) in doubleMantissa() argument 634 uint64_t m = DOUBLE_TO_LONGBITS (z); in doubleMantissa() 645 doubleExponent (jdouble z) in doubleExponent() argument 648 int32_t k = HIGH_U32_FROM_VAR (z) >> 20; in doubleExponent() 658 uint32_t floatMantissa(jfloat z) { in floatMantissa() argument 659 uint32_t m = FLOAT_TO_INTBITS (z); in floatMantissa() 670 floatExponent (jfloat z) in floatExponent() argument 673 int32_t k = FLOAT_TO_INTBITS (z) >> 23; in floatExponent()
|
/libcore/ojluni/src/main/java/sun/util/calendar/ |
D | CalendarUtils.java | 144 int z = mod(x, y); in amod() local 145 return (z == 0) ? y : z; in amod() 149 long z = mod(x, y); in amod() local 150 return (z == 0) ? y : z; in amod()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ThreadLocalRandom.java | 99 private static long mix64(long z) { in mix64() argument 100 z = (z ^ (z >>> 33)) * 0xff51afd7ed558ccdL; in mix64() 101 z = (z ^ (z >>> 33)) * 0xc4ceb9fe1a85ec53L; in mix64() 102 return z ^ (z >>> 33); in mix64() 105 private static int mix32(long z) { in mix32() argument 106 z = (z ^ (z >>> 33)) * 0xff51afd7ed558ccdL; in mix32() 107 return (int)(((z ^ (z >>> 33)) * 0xc4ceb9fe1a85ec53L) >>> 32); in mix32()
|
D | ConcurrentSkipListMap.java | 784 Node<K,V> z; // added node in doPut() local 816 z = new Node<K,V>(key, value, n); in doPut() 817 if (!b.casNext(n, z)) in doPut() 832 idx = new Index<K,V>(z, idx, null); in doPut() 839 idxs[i] = idx = new Index<K,V>(z, idx, null); in doPut() 1359 Node<K,V> z = new Node<K,V>(k, v, null); in buildFromSorted() local 1360 basepred.next = z; in buildFromSorted() 1361 basepred = z; in buildFromSorted() 1365 idx = new Index<K,V>(z, idx, null); in buildFromSorted() 1460 Node<K,V> z = new Node<K,V>(key, val, null); in readObject() local [all …]
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | AtomicReferenceTest.java | 131 AtomicReference z = serialClone(x); in testSerialization() local 132 assertNotSame(y, z); in testSerialization() 135 assertEquals(one, z.get()); in testSerialization()
|
D | LongAdderTest.java | 99 LongAdder z = serialClone(x); in testSerialization() local 100 assertNotSame(y, z); in testSerialization() 103 assertEquals(-22, z.sum()); in testSerialization()
|
D | AtomicBooleanTest.java | 131 AtomicBoolean z = serialClone(x); in testSerialization() local 134 assertTrue(z.get()); in testSerialization()
|
D | AtomicLongTest.java | 208 AtomicLong z = serialClone(x); in testSerialization() local 209 assertNotSame(y, z); in testSerialization() 212 assertEquals(-22, z.get()); in testSerialization()
|
D | DoubleAdderTest.java | 77 DoubleAdder z = serialClone(x); in testSerialization() local 80 assertEquals(-22.0, z.sum()); in testSerialization()
|
D | AtomicIntegerTest.java | 206 AtomicInteger z = serialClone(x); in testSerialization() local 209 assertEquals(22, z.get()); in testSerialization()
|
D | AtomicReferenceFieldUpdaterTest.java | 20 Object z; field in AtomicReferenceFieldUpdaterTest
|
D | SynchronousQueueTest.java | 532 final SynchronousQueue z = new SynchronousQueue(true); 534 assertNotSerialEquals(x, z); 535 SynchronousQueue[] qs = { x, y, z };
|
D | AtomicIntegerFieldUpdaterTest.java | 21 float z; field in AtomicIntegerFieldUpdaterTest
|
D | AtomicLongFieldUpdaterTest.java | 21 float z; field in AtomicLongFieldUpdaterTest
|
/libcore/ojluni/src/test/ |
D | artrun | 37 if [ z"$BASH_SOURCE" != z ]; then
|
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
D | AnnotationTest.java | 158 @TestAnnotation3(z = false) 160 @TestAnnotation3(z = false) 165 @TestAnnotation3(z = true) 167 @TestAnnotation3(z = true) 170 @TestAnnotation3(z = false) 172 @TestAnnotation3(z = true)
|
D | TestAnnotation3b.java | 16 boolean z() default false; in z() method
|
D | TestAnnotation3.java | 16 boolean z() default false; in z() method
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | SerializationTestClass.java | 169 boolean z; field in SerializationTestClass.TestFieldSignatures 232 public TestConstructorSignature(boolean z, byte b, char c, short s, in TestConstructorSignature() argument 294 public void method(boolean z, byte b, char c, short s, int i, float f, in method() argument
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | SerializationBenchmark.java | 180 boolean z; field in SerializationBenchmark.SerializableBoolean 208 boolean z; field in SerializationBenchmark.LittleBitOfEverything
|
/libcore/ojluni/src/main/native/ |
D | jni_util.c | 229 result.z = (*env)->CallStaticBooleanMethodV(env, clazz, mid, args); in JNU_CallStaticMethodByName() 323 result.z = (*env)->CallBooleanMethodV(env, obj, mid, args); in JNU_CallMethodByNameV() 1104 result.z = (*env)->GetBooleanField(env, obj, fid); in JNU_GetFieldByName() 1235 result.z = (*env)->GetStaticBooleanField(env, cls, fid); in JNU_GetStaticFieldByName()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | DatagramChannelTest.java | 1749 protected int z; field in DatagramChannelTest.A 1753 protected int z; field in DatagramChannelTest.B 1756 super.z+=1; in foo()
|