/libcore/luni/src/test/resources/ |
D | math_java_only.csv | 3 cbrt,-0x1.28c16bdbe5b02p341,-0x1.8ec3beb2d4185p1023 4 cbrt,-0x1.2e14b2c0fd516p341,-0x1.a49ea827e7d05p1023 5 cbrt,-0x1.5e34a2f636f55p340,-0x1.47afe754a89fep1021 6 cbrt,-0x1.f8a0db364f2c1p340,-0x1.ea33b08c7fbfbp1022 7 cbrt,0x1.13fe315a92f2fp341,0x1.40c8f2c416881p1023 8 cbrt,-0x1.f058cbbc49543p340,-0x1.d2762c5e7c22bp1022 9 cbrt,0x1.4785ce183fe27p340,0x1.0c0c8b67b7daep1021 10 cbrt,-0x1.250fa24b85fe4p341,-0x1.800e50b80ea85p1023 11 cbrt,0x1.377220bf3a7dfp340,0x1.ccf6eeb86909cp1020 12 cbrt,-0x1.c98f0eb5c5dcbp340,-0x1.6d6d5ccb7231fp1022 [all …]
|
D | math_tests.csv | 2 tan,0x1.5078cebff9c73p-5,0x1.50486b2f87014p-5 3 tan,-0x1.5078cebff9c73p-5,-0x1.50486b2f87014p-5 4 tan,0x1.5389e6df41979p-4,0x1.52c39ef070cadp-4 5 tan,-0x1.5389e6df41979p-4,-0x1.52c39ef070cadp-4 6 tan,0x1.a933fe176b375p-3,0x1.a33f32ac5ceb5p-3 7 tan,-0x1.a933fe176b375p-3,-0x1.a33f32ac5ceb5p-3 8 tan,0x1.fac71cd34eea7p-2,0x1.d696bfa988db9p-2 9 tan,-0x1.fac71cd34eea7p-2,-0x1.d696bfa988db9p-2 10 tan,0x1.7ba49f739829fp-1,0x1.46ac372243536p-1 11 tan,-0x1.7ba49f739829fp-1,-0x1.46ac372243536p-1 [all …]
|
D | math_important_numbers.csv | 2 abs,0x1.5bf0a8b145769p1,0x1.5bf0a8b145769p1,2.718281828459045 3 abs,0x1.5bf0a8b145769p1,-0x1.5bf0a8b145769p1,-2.718281828459045 6 abs,0x1.0p0,0x1.0p0,1.0 7 abs,0x1.0p0,-0x1.0p0,-1.0 8 abs,0x1.0p-1,-0x1.0p-1,-0.5 9 abs,0x1.0p-1,0x1.0p-1,0.5 10 abs,0x1.921fb54442d18p2,-0x1.921fb54442d18p2,-6.283185307179586 11 abs,0x1.815e630c155e1p2,-0x1.815e630c155e1p2,-6.021385919380436 12 abs,0x1.709d10d3e7eabp2,-0x1.709d10d3e7eabp2,-5.759586531581287 13 abs,0x1.5fdbbe9bba775p2,-0x1.5fdbbe9bba775p2,-5.497787143782138 [all …]
|
/libcore/ojluni/src/main/java/jdk/random/ |
D | Xoroshiro128PlusPlus.java | 124 private long x0, x1; field in Xoroshiro128PlusPlus 136 public Xoroshiro128PlusPlus(long x0, long x1) { in Xoroshiro128PlusPlus() argument 138 this.x1 = x1; in Xoroshiro128PlusPlus() 140 if ((x0 | x1) == 0) { in Xoroshiro128PlusPlus() 142 this.x1 = RandomSupport.SILVER_RATIO_64; in Xoroshiro128PlusPlus() 186 long x0 = data[0], x1 = data[1]; in Xoroshiro128PlusPlus() local 188 this.x1 = x1; in Xoroshiro128PlusPlus() 194 return new Xoroshiro128PlusPlus(x0, x1); in copy() 226 long s1 = x1; in nextLong() 233 x1 = Long.rotateLeft(s1, 28); // c in nextLong() [all …]
|
D | Xoshiro256PlusPlus.java | 133 private long x0, x1, x2, x3; field in Xoshiro256PlusPlus 147 public Xoshiro256PlusPlus(long x0, long x1, long x2, long x3) { in Xoshiro256PlusPlus() argument 149 this.x1 = x1; in Xoshiro256PlusPlus() 153 if ((x0 | x1 | x2 | x3) == 0) { in Xoshiro256PlusPlus() 156 this.x1 = (x0 += RandomSupport.GOLDEN_RATIO_64); in Xoshiro256PlusPlus() 204 long x0 = data[0], x1 = data[1], x2 = data[2], x3 = data[3]; in Xoshiro256PlusPlus() local 206 this.x1 = x1; in Xoshiro256PlusPlus() 214 return new Xoshiro256PlusPlus(x0, x1, x2, x3); in copy() 248 long q0 = x0, q1 = x1, q2 = x2, q3 = x3; in nextLong() 258 x0 = q0; x1 = q1; x2 = q2; x3 = q3; in nextLong() [all …]
|
D | L64X128MixRandom.java | 141 private long s, x0, x1; field in L64X128MixRandom 155 public L64X128MixRandom(long a, long s, long x0, long x1) { in L64X128MixRandom() argument 160 this.x1 = x1; in L64X128MixRandom() 162 if ((x0 | x1) == 0) { in L64X128MixRandom() 166 this.x1 = RandomSupport.mixStafford13(v + RandomSupport.GOLDEN_RATIO_64); in L64X128MixRandom() 215 long a = data[0], s = data[1], x0 = data[2], x1 = data[3]; in L64X128MixRandom() local 220 this.x1 = x1; in L64X128MixRandom() 242 long q0 = x0, q1 = x1; in nextLong() 249 x0 = q0; x1 = q1; in nextLong()
|
D | L64X128StarStarRandom.java | 141 private long s, x0, x1; field in L64X128StarStarRandom 155 public L64X128StarStarRandom(long a, long s, long x0, long x1) { in L64X128StarStarRandom() argument 160 this.x1 = x1; in L64X128StarStarRandom() 162 if ((x0 | x1) == 0) { in L64X128StarStarRandom() 166 this.x1 = RandomSupport.mixStafford13(v + RandomSupport.GOLDEN_RATIO_64); in L64X128StarStarRandom() 215 long a = data[0], s = data[1], x0 = data[2], x1 = data[3]; in L64X128StarStarRandom() local 220 this.x1 = x1; in L64X128StarStarRandom() 242 long q0 = x0, q1 = x1; in nextLong() 249 x0 = q0; x1 = q1; in nextLong()
|
D | L32X64MixRandom.java | 140 private int s, x0, x1; field in L32X64MixRandom 154 public L32X64MixRandom(int a, int s, int x0, int x1) { in L32X64MixRandom() argument 159 this.x1 = x1; in L32X64MixRandom() 161 if ((x0 | x1) == 0) { in L32X64MixRandom() 165 this.x1 = RandomSupport.mixMurmur32(v + RandomSupport.GOLDEN_RATIO_32); in L32X64MixRandom() 214 int a = data[0], s = data[1], x0 = data[2], x1 = data[3]; in L32X64MixRandom() local 219 this.x1 = x1; in L32X64MixRandom() 241 int q0 = x0, q1 = x1; in nextInt() 248 x0 = q0; x1 = q1; in nextInt()
|
D | L128X128MixRandom.java | 142 private long sh, sl, x0, x1; field in L128X128MixRandom 158 public L128X128MixRandom(long ah, long al, long sh, long sl, long x0, long x1) { in L128X128MixRandom() argument 165 this.x1 = x1; in L128X128MixRandom() 167 if ((x0 | x1) == 0) { in L128X128MixRandom() 171 this.x1 = RandomSupport.mixStafford13(v + RandomSupport.GOLDEN_RATIO_64); in L128X128MixRandom() 222 long ah = data[0], al = data[1], sh = data[2], sl = data[3], x0 = data[4], x1 = data[5]; in L128X128MixRandom() local 229 this.x1 = x1; in L128X128MixRandom() 264 long q0 = x0, q1 = x1; in nextLong() 272 x0 = q0; x1 = q1; in nextLong()
|
D | L64X256MixRandom.java | 142 private long s, x0, x1, x2, x3; field in L64X256MixRandom 158 public L64X256MixRandom(long a, long s, long x0, long x1, long x2, long x3) { in L64X256MixRandom() argument 163 this.x1 = x1; in L64X256MixRandom() 167 if ((x0 | x1 | x2 | x3) == 0) { in L64X256MixRandom() 171 this.x1 = RandomSupport.mixStafford13(v += RandomSupport.GOLDEN_RATIO_64); in L64X256MixRandom() 224 long a = data[0], s = data[1], x0 = data[2], x1 = data[3], x2 = data[4], x3 = data[5]; in L64X256MixRandom() local 229 this.x1 = x1; in L64X256MixRandom() 254 long q0 = x0, q1 = x1, q2 = x2, q3 = x3; in nextLong() 264 x0 = q0; x1 = q1; x2 = q2; x3 = q3; in nextLong()
|
D | L128X256MixRandom.java | 151 private long sh, sl, x0, x1, x2, x3; field in L128X256MixRandom 169 … public L128X256MixRandom(long ah, long al, long sh, long sl, long x0, long x1, long x2, long x3) { in L128X256MixRandom() argument 176 this.x1 = x1; in L128X256MixRandom() 180 if ((x0 | x1 | x2 | x3) == 0) { in L128X256MixRandom() 184 this.x1 = RandomSupport.mixStafford13(v += RandomSupport.GOLDEN_RATIO_64); in L128X256MixRandom() 242 x0 = data[4], x1 = data[5], x2 = data[6], x3 = data[7]; in L128X256MixRandom() local 249 this.x1 = x1; in L128X256MixRandom() 288 long q0 = x0, q1 = x1, q2 = x2, q3 = x3; in nextLong() 298 x0 = q0; x1 = q1; x2 = q2; x3 = q3; in nextLong()
|
D | L64X1024MixRandom.java | 179 long x0, long x1, long x2, long x3, in L64X1024MixRandom() argument 188 this.x[1] = x1; in L64X1024MixRandom() 204 … if ((x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | x10 | x11 | x12 | x13 | x14 | x15) == 0) { in L64X1024MixRandom()
|
D | L128X1024MixRandom.java | 186 long x0, long x1, long x2, long x3, in L128X1024MixRandom() argument 197 this.x[1] = x1; in L128X1024MixRandom() 213 … if ((x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | x10 | x11 | x12 | x13 | x14 | x15) == 0) { in L128X1024MixRandom()
|
/libcore/luni/src/test/java/libcore/java/math/ |
D | OldBigDecimalScaleOperationsTest.java | 83 BigDecimal x1 = new BigDecimal(1.23400); in testSetScale() local 84 BigDecimal x2 = x1.setScale(75); in testSetScale() 86 assertEquals(0, x1.compareTo(x2)); in testSetScale() 87 assertEquals(0, x2.compareTo(x1)); in testSetScale() 89 x1.precision(); in testSetScale() 91 assertEquals(0, x1.compareTo(x2)); in testSetScale() 92 assertEquals(0, x2.compareTo(x1)); in testSetScale() 96 assertEquals(0, x1.compareTo(x2)); in testSetScale() 97 assertEquals(0, x2.compareTo(x1)); in testSetScale()
|
/libcore/ojluni/src/test/java/util/EnumMap/ |
D | ToArray.java | 50 Map.Entry[] x1 = new Map.Entry[3]; in testToArray() local 51 x1[2] = m.entrySet().iterator().next(); in testToArray() 52 Map.Entry[] x2 = m.entrySet().toArray(x1); in testToArray() 53 Assert.assertEquals(x1, x2); in testToArray()
|
/libcore/benchmarks/src_androidx/libcore/benchmark/ |
D | MethodHandlesTest.java | 53 private int x1 = 10; field in MethodHandlesTest 67 a.identity(x1); in directCall_singleArgument() 83 MH_1.invoke(a, x1); in methodHandles_singleArgument()
|
/libcore/ojluni/src/test/java/lang/StringBuffer/ |
D | IndexOf.java | 153 int x1 = 0; in compareStringStringBuffer() local 156 x1 = generator.nextInt(len); in compareStringStringBuffer() 158 x2 = x1 + x2; in compareStringStringBuffer() 160 String fragment = testString.substring(x1,x2); in compareStringStringBuffer()
|
/libcore/ojluni/src/test/java/lang/Math/ |
D | MultiplicationTests.java | 59 long x1 = x >>> 32; in unsignedMultiplyHigh() local 63 long t = x1 * y0 + ((x0 * y0) >>> 32); in unsignedMultiplyHigh() 67 return x1 * y1 + z1 + (z0 >>> 32); in unsignedMultiplyHigh()
|
/libcore/ojluni/src/test/java/util/Map/ |
D | LockStep.java | 83 Object x1 = fit.next(); in removeLastTwo() local 90 if (x == x1 || x == x2) in removeLastTwo()
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/parameter/ |
D | MetadataVariations.smali | 672 accessFlags = { 0x1 } 679 accessFlags = { 0x1 } 686 accessFlags = { 0x1 } 693 accessFlags = { 0x1 }
|
/libcore/toolchainapi/api/ |
D | current.txt | 10 field public static final int FLAG_SERIALIZABLE = 1; // 0x1
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Math.java | 1550 long x1 = x >> 32; in multiplyHigh() local 1556 long t = x1 * y2 + (z2 >>> 32); in multiplyHigh() 1561 return x1 * y1 + z0 + (z1 >> 32); in multiplyHigh()
|
/libcore/ojluni/src/main/native/ |
D | net_util_md.c | 673 int index, x1, x2, x3; 682 &index, &x1, &x2, &x3, ifname) == 21) {
|
/libcore/api/ |
D | module-lib-current.txt | 301 field public static final int KIND_GLOBAL_ALLOCATED_OBJECTS = 1; // 0x1 310 field public static final int TRACE_COUNT_ALLOCS = 1; // 0x1 352 field public static final int CODE_PATH_TYPE_PRIMARY_APK = 1; // 0x1 363 field public static final int ACCESS_METHOD_REFLECTION = 1; // 0x1 738 field public static final short MIN_VALUE = 1; // 0x1
|
D | current.txt | 963 field public static final int OP_MOVE = 1; // 0x1 1168 field public static final int EUROPEAN = 1; // 0x1 1903 field public static final int PROTOCOL_VERSION_1 = 1; // 0x1 1909 field public static final byte SC_WRITE_METHOD = 1; // 0x1 2412 field public static final int BYTES = 1; // 0x1 2540 field public static final byte DIRECTIONALITY_RIGHT_TO_LEFT = 1; // 0x1 2586 field public static final byte UPPERCASE_LETTER = 1; // 0x1 4415 field public static final int MIN_PRIORITY = 1; // 0x1 4665 field public static final int REF_getField = 1; // 0x1 4747 field public static final int PUBLIC = 1; // 0x1 [all …]
|