Home
last modified time | relevance | path

Searched refs:rotateRight (Results 1 – 13 of 13) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DLongTest.java1024 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()
DIntegerTest.java1189 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/
DLong.java225 public static long rotateRight(long i, int distance) { in rotateRight() method in Long
DInteger.java225 public static int rotateRight(int i, int distance) { in rotateRight() method in Integer
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DInteger.annotated.java118 public static int rotateRight(int i, int distance) { throw new RuntimeException("Stub!"); } in rotateRight() method in Integer
DLong.annotated.java117 public static long rotateRight(long i, int distance) { throw new RuntimeException("Stub!"); } in rotateRight() method in Long
/libcore/ojluni/src/main/java/java/util/
DHashMap.java2200 static <K,V> TreeNode<K,V> rotateRight(TreeNode<K,V> root, in rotateRight() method in HashMap.TreeNode
2244 root = rotateRight(root, xpp); in balanceInsertion()
2258 root = rotateRight(root, x = xp); in balanceInsertion()
2307 root = rotateRight(root, xpr); in balanceDeletion()
2328 root = rotateRight(root, xp); in balanceDeletion()
2356 root = rotateRight(root, xp); in balanceDeletion()
DTreeMap.java2270 private void rotateRight(TreeMapEntry<K,V> p) { in rotateRight() method in TreeMap
2305 rotateRight(parentOf(parentOf(x))); in fixAfterInsertion()
2317 rotateRight(x); in fixAfterInsertion()
2400 rotateRight(sib); in fixAfterDeletion()
2415 rotateRight(parentOf(x)); in fixAfterDeletion()
2433 rotateRight(parentOf(x)); in fixAfterDeletion()
/libcore/ojluni/src/main/java/java/lang/
DLong.java1528 public static long rotateRight(long i, int distance) { in rotateRight() method in Long
DInteger.java1533 public static int rotateRight(int i, int distance) { in rotateRight() method in Integer
/libcore/ojluni/annotations/hiddenapi/java/util/
DHashMap.java608 static <K, V> java.util.HashMap.TreeNode<K, V> rotateRight( in rotateRight() method in HashMap.TreeNode
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java3115 static <K,V> TreeNode<K,V> rotateRight(TreeNode<K,V> root, in rotateRight() method in ConcurrentHashMap.TreeBin
3159 root = rotateRight(root, xpp); in balanceInsertion()
3173 root = rotateRight(root, x = xp); in balanceInsertion()
3222 root = rotateRight(root, xpr); in balanceDeletion()
3243 root = rotateRight(root, xp); in balanceDeletion()
3271 root = rotateRight(root, xp); in balanceDeletion()
/libcore/api/
Dcurrent.txt3184 method public static int rotateRight(int, int);
3260 method public static long rotateRight(long, int);