Searched defs:rotateLeft (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,
1161 * ignored, even if the distance is negative: {@code rotateLeft(val,
1162 * distance) == rotateLeft(val, distance & 0x1F)}.
1169 public static int rotateLeft(int i, int distance) { method in class:Integer
1180 * left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,
H A DLong.java1113 * right rotation: {@code rotateLeft(val, -distance) == rotateRight(val,
1116 * ignored, even if the distance is negative: {@code rotateLeft(val,
1117 * distance) == rotateLeft(val, distance & 0x3F)}.
1124 public static long rotateLeft(long i, int distance) { method in class:Long
1135 * left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,
/openjdk7/jdk/src/share/classes/java/util/
H A DTreeMap.java2057 private void rotateLeft(Entry<K,V> p) { method in class:TreeMap
2107 rotateLeft(x);
2127 rotateLeft(parentOf(parentOf(x)));
2194 rotateLeft(parentOf(x));
2212 rotateLeft(parentOf(x));
2233 rotateLeft(sib);

Completed in 42 milliseconds