Searched defs:rotateRight (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DInteger.java1158 * right rotation: {@code rotateLeft(val, -distance) == rotateRight(val,
1180 * left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,
1183 * ignored, even if the distance is negative: {@code rotateRight(val,
1184 * distance) == rotateRight(val, distance & 0x1F)}.
1191 public static int rotateRight(int i, int distance) { method in class:Integer
H A DLong.java1113 * right rotation: {@code rotateLeft(val, -distance) == rotateRight(val,
1135 * left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,
1138 * ignored, even if the distance is negative: {@code rotateRight(val,
1139 * distance) == rotateRight(val, distance & 0x3F)}.
1146 public static long rotateRight(long i, int distance) { method in class:Long
/openjdk7/jdk/src/share/classes/java/util/
H A DTreeMap.java2076 private void rotateRight(Entry<K,V> p) { method in class:TreeMap
2111 rotateRight(parentOf(parentOf(x)));
2123 rotateRight(x);
2206 rotateRight(sib);
2221 rotateRight(parentOf(x));
2239 rotateRight(parentOf(x));

Completed in 82 milliseconds