Searched refs:s0 (Results 1 – 9 of 9) sorted by relevance
/libcore/ojluni/src/main/java/jdk/random/ |
D | Xoroshiro128PlusPlus.java | 225 final long s0 = x0; in nextLong() local 229 final long result = Long.rotateLeft(s0 + s1, 17) + s0; // "plusplus" scrambler in nextLong() 231 s1 ^= s0; in nextLong() 232 x0 = Long.rotateLeft(s0, 49) ^ s1 ^ (s1 << 21); // a, b in nextLong() 263 long s0 = 0, s1 = 0; in jumpAlgorithm() local 267 s0 ^= x0; in jumpAlgorithm() 273 x0 = s0; in jumpAlgorithm()
|
D | L64X1024MixRandom.java | 302 final long s0 = x[p = (p + 1) & (N - 1)]; in nextLong() local 308 final long result = RandomSupport.mixLea64(s + s0); in nextLong() 314 s15 ^= s0; in nextLong() 315 x[q] = Long.rotateLeft(s0, 25) ^ s15 ^ (s15 << 27); in nextLong()
|
D | Xoshiro256PlusPlus.java | 289 long s0 = 0, s1 = 0, s2 = 0, s3 = 0; in jumpAlgorithm() local 293 s0 ^= x0; in jumpAlgorithm() 301 x0 = s0; in jumpAlgorithm()
|
D | L128X1024MixRandom.java | 316 final long s0 = x[p = (p + 1) & (N - 1)]; in nextLong() local 321 final long result = RandomSupport.mixLea64(sh + s0); in nextLong() 341 s15 ^= s0; in nextLong() 342 x[q] = Long.rotateLeft(s0, 25) ^ s15 ^ (s15 << 27); in nextLong()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | IdentityHashMap2Test.java | 316 Short s0 = Short.valueOf((short) 0); in test_putLjava_lang_ObjectLjava_lang_Object() local 317 m.put(s0, "short"); in test_putLjava_lang_ObjectLjava_lang_Object() 322 "short", m.get(s0)); in test_putLjava_lang_ObjectLjava_lang_Object()
|
D | IdentityHashMapTest.java | 310 Short s0 = new Short((short) 0); in test_putLjava_lang_ObjectLjava_lang_Object() local 311 m.put(s0, "short"); in test_putLjava_lang_ObjectLjava_lang_Object() 316 "short", m.get(s0)); in test_putLjava_lang_ObjectLjava_lang_Object()
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandlesTest.java | 1339 public VariableArityTester(String s0, String... strings) { update(s0, strings); } in VariableArityTester() argument 1361 … public String update(String s0, String... strings) { return lastResult = tally(s0, strings); } in update() argument 1388 public static String tally(String s0, String... strings) { in tally() argument 1389 return s0 + ", " + Arrays.toString(strings); in tally()
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectInputStream.java | 861 short s0 = bin.readShort(); in readStreamHeader() local 863 if (s0 != STREAM_MAGIC || s1 != STREAM_VERSION) { in readStreamHeader() 865 String.format("invalid stream header: %04X%04X", s0, s1)); in readStreamHeader()
|
/libcore/ojluni/src/test/java/lang/invoke/ |
D | MethodHandlesTest.java | 424 public static void s0() { called("s0"); } in s0() method in MethodHandlesTest.Example
|