/libcore/ojluni/src/test/java/lang/invoke/VarHandles/ |
D | VarHandleBaseByteArrayTest.java | 205 static double rotateRight(double i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest 207 Long.rotateRight(Double.doubleToRawLongBits(i), distance)); in rotateRight() 215 static float rotateRight(float i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest 217 Integer.rotateRight(Float.floatToRawIntBits(i), distance)); in rotateRight() 224 static long rotateRight(long i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest 225 return Long.rotateRight(i, distance); in rotateRight() 232 static int rotateRight(int i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest 233 return Integer.rotateRight(i, distance); in rotateRight() 242 static short rotateRight(short i, int distance) { in rotateRight() method in VarHandleBaseByteArrayTest 244 v = Integer.rotateRight(v, distance); in rotateRight() [all …]
|
D | VarHandleTestByteArrayAsShort.java | 884 : rotateRight(VALUE_2, (i % SIZE) << 3); in testArrayReadOnly()
|
D | VarHandleTestByteArrayAsChar.java | 884 : rotateRight(VALUE_2, (i % SIZE) << 3); in testArrayReadOnly()
|
D | VarHandleTestByteArrayAsFloat.java | 1314 : rotateRight(VALUE_2, (i % SIZE) << 3); in testArrayReadOnly()
|
D | VarHandleTestByteArrayAsDouble.java | 1314 : rotateRight(VALUE_2, (i % SIZE) << 3); in testArrayReadOnly()
|
D | VarHandleTestByteArrayAsLong.java | 1718 : rotateRight(VALUE_2, (i % SIZE) << 3); in testArrayReadOnly()
|
D | VarHandleTestByteArrayAsInt.java | 1718 : rotateRight(VALUE_2, (i % SIZE) << 3); in testArrayReadOnly()
|
D | X-VarHandleTestByteArrayView.java.template | 2086 : rotateRight(VALUE_2, (i % SIZE) << 3);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | LongTest.java | 1024 assertEquals(0xF, Long.rotateRight(0xF0, 4)); in test_rotateRightJI() 1025 assertEquals(0xF, Long.rotateRight(0xF00, 8)); in test_rotateRightJI() 1026 assertEquals(0xF, Long.rotateRight(0xF000, 12)); in test_rotateRightJI() 1027 assertEquals(0xF, Long.rotateRight(0xF0000, 16)); in test_rotateRightJI() 1028 assertEquals(0xF, Long.rotateRight(0xF00000, 20)); in test_rotateRightJI() 1029 assertEquals(0xF, Long.rotateRight(0xF000000, 24)); in test_rotateRightJI() 1030 assertEquals(0xF, Long.rotateRight(0xF0000000L, 28)); in test_rotateRightJI() 1031 assertEquals(0xF000000000000000L, Long.rotateRight(0xF000000000000000L, 64)); in test_rotateRightJI() 1032 assertEquals(0xF000000000000000L, Long.rotateRight(0xF000000000000000L, 0)); in test_rotateRightJI()
|
D | IntegerTest.java | 1189 assertEquals(0xF, Integer.rotateRight(0xF0, 4)); in test_rotateRightII() 1190 assertEquals(0xF, Integer.rotateRight(0xF00, 8)); in test_rotateRightII() 1191 assertEquals(0xF, Integer.rotateRight(0xF000, 12)); in test_rotateRightII() 1192 assertEquals(0xF, Integer.rotateRight(0xF0000, 16)); in test_rotateRightII() 1193 assertEquals(0xF, Integer.rotateRight(0xF00000, 20)); in test_rotateRightII() 1194 assertEquals(0xF, Integer.rotateRight(0xF000000, 24)); in test_rotateRightII() 1195 assertEquals(0xF, Integer.rotateRight(0xF0000000, 28)); in test_rotateRightII() 1196 assertEquals(0xF0000000, Integer.rotateRight(0xF0000000, 32)); in test_rotateRightII() 1197 assertEquals(0xF0000000, Integer.rotateRight(0xF0000000, 0)); in test_rotateRightII()
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | Long.java | 225 public static long rotateRight(long i, int distance) { in rotateRight() method in Long
|
D | Integer.java | 225 public static int rotateRight(int i, int distance) { in rotateRight() method in Integer
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | Integer.annotated.java | 122 public static int rotateRight(int i, int distance) { throw new RuntimeException("Stub!"); } in rotateRight() method in Integer
|
D | Long.annotated.java | 121 public static long rotateRight(long i, int distance) { throw new RuntimeException("Stub!"); } in rotateRight() method in Long
|
/libcore/ojluni/src/main/java/java/util/ |
D | HashMap.java | 2363 static <K,V> TreeNode<K,V> rotateRight(TreeNode<K,V> root, in rotateRight() method in HashMap.TreeNode 2407 root = rotateRight(root, xpp); in balanceInsertion() 2421 root = rotateRight(root, x = xp); in balanceInsertion() 2470 root = rotateRight(root, xpr); in balanceDeletion() 2491 root = rotateRight(root, xp); in balanceDeletion() 2519 root = rotateRight(root, xp); in balanceDeletion()
|
D | TreeMap.java | 2624 private void rotateRight(TreeMapEntry<K,V> p) { in rotateRight() method in TreeMap 2659 rotateRight(parentOf(parentOf(x))); in fixAfterInsertion() 2671 rotateRight(x); in fixAfterInsertion() 2754 rotateRight(sib); in fixAfterDeletion() 2769 rotateRight(parentOf(x)); in fixAfterDeletion() 2787 rotateRight(parentOf(x)); in fixAfterDeletion()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Integer.java | 1884 public static int rotateRight(int i, int distance) { in rotateRight() method in Integer
|
D | Long.java | 1929 public static long rotateRight(long i, int distance) { in rotateRight() method
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | HashMap.java | 608 static <K, V> java.util.HashMap.TreeNode<K, V> rotateRight( in rotateRight() method in HashMap.TreeNode
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentHashMap.java | 3113 static <K,V> TreeNode<K,V> rotateRight(TreeNode<K,V> root, in rotateRight() method in ConcurrentHashMap.TreeBin 3157 root = rotateRight(root, xpp); in balanceInsertion() 3171 root = rotateRight(root, x = xp); in balanceInsertion() 3220 root = rotateRight(root, xpr); in balanceDeletion() 3241 root = rotateRight(root, xp); in balanceDeletion() 3269 root = rotateRight(root, xp); in balanceDeletion()
|
/libcore/api/ |
D | current.txt | 3457 method public static int rotateRight(int, int); 3535 method public static long rotateRight(long, int);
|