Searched refs:rotateLeft (Results 1 – 11 of 11) sorted by relevance
158 temp = Long.rotateLeft(temp, value); in packedSwitch7()159 temp = Long.rotateLeft(temp, value); in packedSwitch7()160 temp = Long.rotateLeft(temp, value); in packedSwitch7()161 temp = Long.rotateLeft(temp, value); in packedSwitch7()162 temp = Long.rotateLeft(temp, value); in packedSwitch7()163 temp = Long.rotateLeft(temp, value); in packedSwitch7()164 temp = Long.rotateLeft(temp, value); in packedSwitch7()165 temp = Long.rotateLeft(temp, value); in packedSwitch7()166 temp = Long.rotateLeft(temp, value); in packedSwitch7()167 temp = Long.rotateLeft(temp, value); in packedSwitch7()[all …]
40 return Integer.rotateLeft(value, distance); in rotateLeftByte()60 return Integer.rotateLeft(value, distance); in rotateLeftShort()80 return Integer.rotateLeft(value, distance); in rotateLeftChar()100 return Integer.rotateLeft(value, distance); in rotateLeftInt()120 return Long.rotateLeft(value, distance); in rotateLeftLong()236 return Integer.rotateLeft(value, distance); in rotateLeftIntWithByteDistance()
47 public static long rotateLeft(long i, int distance) { in rotateLeft() method in RedefinedLongIntrinsics
446 li2l("rotateLeft", r, Long::rotateLeft, RedefinedLongIntrinsics::rotateLeft),
1615 Assert.assertEquals(Integer.rotateLeft(0x11, 0), 0x11);1617 Assert.assertEquals(Integer.rotateLeft(0x11, 1), 0x22);1618 Assert.assertEquals(Integer.rotateLeft(0x11, Integer.SIZE - 1), 0x80000008);1619 Assert.assertEquals(Integer.rotateLeft(0x11, Integer.SIZE), 0x11);1620 Assert.assertEquals(Integer.rotateLeft(0x11, Integer.SIZE + 1), 0x22);1622 Assert.assertEquals(Integer.rotateLeft(0x11, -1), 0x80000008);1623 Assert.assertEquals(Integer.rotateLeft(0x11, -(Integer.SIZE - 1)), 0x22);1624 Assert.assertEquals(Integer.rotateLeft(0x11, -Integer.SIZE), 0x11);1625 Assert.assertEquals(Integer.rotateLeft(0x11, -(Integer.SIZE + 1)), 0x80000008);1627 Assert.assertEquals(Integer.rotateLeft(0xC0000000, 1), 0x80000001);[all …]
67 return java.lang.Integer.rotateLeft(value, distance); in rotateIntegerLeft()106 return java.lang.Long.rotateLeft(value, distance); in rotateLongLeft()
67 java.lang.Integer.rotateLeft(0, 0); in test()78 java.lang.Long.rotateLeft(0L, 0); in test()
66 # return Integer.rotateLeft(value ? 1 : 0, distance);81 invoke-static {v0, p1}, Ljava/lang/Integer;->rotateLeft(II)I
26 …va.lang.Integer.reverseBytes(int), public static int java.lang.Integer.rotateLeft(int,int), public…
391 ..=> public static int java.lang.Integer.rotateLeft(int,int)392 ..<= public static int java.lang.Integer.rotateLeft(int,int) -> <class java.lang.Integer: 0>413 ..=> public static long java.lang.Long.rotateLeft(long,int)414 ..<= public static long java.lang.Long.rotateLeft(long,int) -> <class java.lang.Long: 0>
872 int b = rotateLeft(x, dist); in b2296099Test()878 long bl = rotateLeft(xl, distl); in b2296099Test()886 static int rotateLeft(int i, int distance) { in rotateLeft() method in Main