Home
last modified time | relevance | path

Searched refs:rotateLeft (Results 1 – 11 of 11) 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/565-checker-rotate/src-art/
DMain.java40 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()
/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.java1615 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 …]
/art/test/557-checker-instruct-simplifier-ror/src/
DMain.java67 return java.lang.Integer.rotateLeft(value, distance); in rotateIntegerLeft()
106 return java.lang.Long.rotateLeft(value, distance); in rotateLongLeft()
/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/565-checker-rotate/smali/
DMain2.smali66 # return Integer.rotateLeft(value ? 1 : 0, distance);
81 invoke-static {v0, p1}, Ljava/lang/Integer;->rotateLeft(II)I
/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