Searched refs:thirtyThree (Results 1 – 1 of 1) sorted by relevance
93 int thirtyThree = thirtyTwo + 1; in shiftTest3() local98 Main.assertTrue(1 << thirtyThree == 2); in shiftTest3()101 Main.assertTrue(1 << -thirtyThree == -2147483648); in shiftTest3()102 Main.assertTrue(1 << thirtyThree == 2); in shiftTest3()106 Main.assertTrue(1 >> thirtyThree == 0); in shiftTest3()109 Main.assertTrue(1 >> -thirtyThree == 0); in shiftTest3()110 Main.assertTrue(-4 >> thirtyThree == -2); in shiftTest3()114 Main.assertTrue(1 >>> thirtyThree == 0); in shiftTest3()117 Main.assertTrue(1 >>> -thirtyThree == 0); in shiftTest3()118 Main.assertTrue(-4 >>> thirtyThree == 2147483646); in shiftTest3()