Lines Matching refs:distance

29   private static int rotateLeftByte(byte value, int distance) {  in rotateLeftByte()  argument
30 return Integer.rotateLeft(value, distance); in rotateLeftByte()
43 private static int rotateLeftShort(short value, int distance) { in rotateLeftShort() argument
44 return Integer.rotateLeft(value, distance); in rotateLeftShort()
57 private static int rotateLeftChar(char value, int distance) { in rotateLeftChar() argument
58 return Integer.rotateLeft(value, distance); in rotateLeftChar()
71 private static int rotateLeftInt(int value, int distance) { in rotateLeftInt() argument
72 return Integer.rotateLeft(value, distance); in rotateLeftInt()
85 private static long rotateLeftLong(long value, int distance) { in rotateLeftLong() argument
86 return Long.rotateLeft(value, distance); in rotateLeftLong()
98 private static int rotateRightByte(byte value, int distance) { in rotateRightByte() argument
99 return Integer.rotateRight(value, distance); in rotateRightByte()
111 private static int rotateRightShort(short value, int distance) { in rotateRightShort() argument
112 return Integer.rotateRight(value, distance); in rotateRightShort()
124 private static int rotateRightChar(char value, int distance) { in rotateRightChar() argument
125 return Integer.rotateRight(value, distance); in rotateRightChar()
137 private static int rotateRightInt(int value, int distance) { in rotateRightInt() argument
138 return Integer.rotateRight(value, distance); in rotateRightInt()
150 private static long rotateRightLong(long value, int distance) { in rotateRightLong() argument
151 return Long.rotateRight(value, distance); in rotateRightLong()
165 private static int rotateLeftIntWithByteDistance(int value, byte distance) { in rotateLeftIntWithByteDistance() argument
166 return Integer.rotateLeft(value, distance); in rotateLeftIntWithByteDistance()
178 private static int rotateRightIntWithByteDistance(int value, byte distance) { in rotateRightIntWithByteDistance() argument
179 return Integer.rotateRight(value, distance); in rotateRightIntWithByteDistance()
218 private static int rotateLeftBoolean(boolean value, int distance) { in rotateLeftBoolean() argument
227 return Integer.rotateLeft(src, distance); in rotateLeftBoolean()
362 private static int rotateRightBoolean(boolean value, int distance) { in rotateRightBoolean() argument
371 return Integer.rotateRight(src, distance); in rotateRightBoolean()