Home
last modified time | relevance | path

Searched refs:rotateLeft (Results 1 – 9 of 9) sorted by relevance

/art/test/015-switch/src/
DMain.java158 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 …]
/art/test/567-checker-builder-intrinsics/src/
DTestRotate.java30 return Integer.rotateLeft(value, distance); in rotateLeftByte()
44 return Integer.rotateLeft(value, distance); in rotateLeftShort()
58 return Integer.rotateLeft(value, distance); in rotateLeftChar()
72 return Integer.rotateLeft(value, distance); in rotateLeftInt()
86 return Long.rotateLeft(value, distance); in rotateLeftLong()
166 return Integer.rotateLeft(value, distance); in rotateLeftIntWithByteDistance()
227 return Integer.rotateLeft(src, distance); in rotateLeftBoolean()
/art/test/950-redefine-intrinsic/src/
DRedefinedLongIntrinsics.java47 public static long rotateLeft(long i, int distance) { in rotateLeft() method in RedefinedLongIntrinsics
DMain.java446 li2l("rotateLeft", r, Long::rotateLeft, RedefinedLongIntrinsics::rotateLeft),
/art/test/082-inline-execute/src/
DMain.java1640 Assert.assertEquals(Integer.rotateLeft(0x11, 0), 0x11);
1642 Assert.assertEquals(Integer.rotateLeft(0x11, 1), 0x22);
1643 Assert.assertEquals(Integer.rotateLeft(0x11, Integer.SIZE - 1), 0x80000008);
1644 Assert.assertEquals(Integer.rotateLeft(0x11, Integer.SIZE), 0x11);
1645 Assert.assertEquals(Integer.rotateLeft(0x11, Integer.SIZE + 1), 0x22);
1647 Assert.assertEquals(Integer.rotateLeft(0x11, -1), 0x80000008);
1648 Assert.assertEquals(Integer.rotateLeft(0x11, -(Integer.SIZE - 1)), 0x22);
1649 Assert.assertEquals(Integer.rotateLeft(0x11, -Integer.SIZE), 0x11);
1650 Assert.assertEquals(Integer.rotateLeft(0x11, -(Integer.SIZE + 1)), 0x80000008);
1652 Assert.assertEquals(Integer.rotateLeft(0xC0000000, 1), 0x80000001);
[all …]
/art/test/988-method-trace/src/art/
DTest988Intrinsics.java67 java.lang.Integer.rotateLeft(0, 0); in test()
78 java.lang.Long.rotateLeft(0L, 0); in test()
/art/test/912-classes/
Dexpected.txt26 …va.lang.Integer.reverseBytes(int), public static int java.lang.Integer.rotateLeft(int,int), public…
/art/test/988-method-trace/
Dexpected.txt391 ..=> 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>
/art/test/083-compiler-regressions/src/
DMain.java872 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