Home
last modified time | relevance | path

Searched refs:x2 (Results 1 – 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/jdk/random/
DXoshiro256PlusPlus.java133 private long x0, x1, x2, x3; field in Xoshiro256PlusPlus
147 public Xoshiro256PlusPlus(long x0, long x1, long x2, long x3) { in Xoshiro256PlusPlus() argument
150 this.x2 = x2; in Xoshiro256PlusPlus()
153 if ((x0 | x1 | x2 | x3) == 0) { in Xoshiro256PlusPlus()
157 this.x2 = (x0 += RandomSupport.GOLDEN_RATIO_64); in Xoshiro256PlusPlus()
204 long x0 = data[0], x1 = data[1], x2 = data[2], x3 = data[3]; in Xoshiro256PlusPlus() local
207 this.x2 = x2; 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 …]
DL64X256MixRandom.java142 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
164 this.x2 = x2; in L64X256MixRandom()
167 if ((x0 | x1 | x2 | x3) == 0) { in L64X256MixRandom()
172 this.x2 = 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
230 this.x2 = x2; 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()
DL128X256MixRandom.java151 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
177 this.x2 = x2; in L128X256MixRandom()
180 if ((x0 | x1 | x2 | x3) == 0) { in L128X256MixRandom()
185 this.x2 = 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
250 this.x2 = x2; 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()
DL64X1024MixRandom.java179 long x0, long x1, long x2, long x3, in L64X1024MixRandom() argument
189 this.x[2] = x2; in L64X1024MixRandom()
204 … if ((x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8 | x9 | x10 | x11 | x12 | x13 | x14 | x15) == 0) { in L64X1024MixRandom()
DL128X1024MixRandom.java186 long x0, long x1, long x2, long x3, in L128X1024MixRandom() argument
198 this.x[2] = x2; 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/
DOldBigDecimalScaleOperationsTest.java84 BigDecimal x2 = x1.setScale(75); in testSetScale() local
86 assertEquals(0, x1.compareTo(x2)); in testSetScale()
87 assertEquals(0, x2.compareTo(x1)); in testSetScale()
91 assertEquals(0, x1.compareTo(x2)); in testSetScale()
92 assertEquals(0, x2.compareTo(x1)); in testSetScale()
94 x2.precision(); 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/
DToArray.java52 Map.Entry[] x2 = m.entrySet().toArray(x1); in testToArray() local
53 Assert.assertEquals(x1, x2); in testToArray()
54 Assert.assertEquals(x2[0].getKey(), Country.FRENCH); in testToArray()
55 Assert.assertEquals(x2[1].getKey(), Country.POLISH); in testToArray()
56 Assert.assertEquals(x2[2], null); in testToArray()
/libcore/ojluni/src/test/java/lang/StringBuffer/
DIndexOf.java154 int x2 = 1000; in compareStringStringBuffer() local
155 while(x2 > testString.length()) { in compareStringStringBuffer()
157 x2 = generator.nextInt(100); in compareStringStringBuffer()
158 x2 = x1 + x2; in compareStringStringBuffer()
160 String fragment = testString.substring(x1,x2); in compareStringStringBuffer()
/libcore/ojluni/src/test/java/util/Map/
DLockStep.java84 Object x2 = fit.next(); in removeLastTwo() local
90 if (x == x1 || x == x2) in removeLastTwo()
/libcore/toolchainapi/api/
Dcurrent.txt9 field public static final int FLAG_MARKERS = 2; // 0x2
/libcore/ojluni/src/main/java/java/lang/
DMath.java1551 long x2 = x & 0xFFFFFFFFL; in multiplyHigh() local
1555 long z2 = x2 * y2; in multiplyHigh()
1559 z1 += x2 * y1; in multiplyHigh()
/libcore/ojluni/src/main/native/
Dnet_util_md.c673 int index, x1, x2, x3;
682 &index, &x1, &x2, &x3, ifname) == 21) {
/libcore/ojluni/src/test/java/math/BigInteger/
DBigIntegerTest.java235 BigInteger x2 = x.pow(2); in square() local
237 Assert.assertEquals(x2, xx); in square()
/libcore/api/
Dmodule-lib-current.txt300 field public static final int KIND_GLOBAL_ALLOCATED_BYTES = 2; // 0x2
354 field public static final int CODE_PATH_TYPE_SPLIT_APK = 2; // 0x2
360 field public static final int ACCESS_METHOD_JNI = 2; // 0x2
Dcurrent.txt966 field public static final int OP_MOVE_FROM16 = 2; // 0x2
1163 field public static final int ARABIC = 2; // 0x2
1904 field public static final int PROTOCOL_VERSION_2 = 2; // 0x2
1908 field public static final byte SC_SERIALIZABLE = 2; // 0x2
2517 field public static final int BYTES = 2; // 0x2
2541 field public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC = 2; // 0x2
2555 field public static final byte LOWERCASE_LETTER = 2; // 0x2
2566 field public static final int MIN_RADIX = 2; // 0x2
3947 field public static final int BYTES = 2; // 0x2
4666 field public static final int REF_getStatic = 2; // 0x2
[all …]