Home
last modified time | relevance | path

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

/art/test/003-omnibus-opcodes/src/
DIntMath.java88 static void shiftTest3(int thirtyTwo) { in shiftTest3() argument
91 int one = thirtyTwo / 32; in shiftTest3()
92 int sixteen = thirtyTwo / 2; in shiftTest3()
93 int thirtyThree = thirtyTwo + 1; in shiftTest3()
94 int sixtyFour = thirtyTwo * 2; in shiftTest3()
96 Main.assertTrue(1 << thirtyTwo == 1); in shiftTest3()
100 Main.assertTrue(1 << -thirtyTwo == 1); in shiftTest3()
104 Main.assertTrue(1 >> thirtyTwo == 1); in shiftTest3()
108 Main.assertTrue(1 >> -thirtyTwo == 1); in shiftTest3()
112 Main.assertTrue(1 >>> thirtyTwo == 1); in shiftTest3()
[all …]