Home | History | Annotate | Download | only in lang

Lines Matching refs:rotateRight

1496      * right rotation: {@code rotateLeft(val, -distance) == rotateRight(val,
1520 * left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,
1523 * ignored, even if the distance is negative: {@code rotateRight(val,
1524 * distance) == rotateRight(val, distance & 0x1F)}.
1533 public static int rotateRight(int i, int distance) {