Lines Matching refs:Integer

51     expectEquals(Integer.MIN_VALUE, $opt$ShlInt(1, 31));  // overflow  in testShlInt()
52 expectEquals(Integer.MIN_VALUE, $opt$ShlInt(1073741824, 1)); // overflow in testShlInt()
60 expectEquals(Integer.MIN_VALUE, $opt$ShlInt(1, -1)); // -1 & 0x1f = 31 in testShlInt()
65 expectEquals(Integer.MIN_VALUE, $opt$ShlInt(7, Integer.MAX_VALUE)); in testShlInt()
66 expectEquals(7, $opt$ShlInt(7, Integer.MIN_VALUE)); in testShlInt()
98 expectEquals(Long.MIN_VALUE, $opt$ShlLong(7L, Integer.MAX_VALUE)); in testShlLong()
99 expectEquals(7L, $opt$ShlLong(7L, Integer.MIN_VALUE)); in testShlLong()
121 expectEquals(0, $opt$ShrInt(Integer.MAX_VALUE, 31)); in testShrInt()
122 expectEquals(-1, $opt$ShrInt(Integer.MIN_VALUE, 31)); in testShrInt()
131 expectEquals(-4, $opt$ShrInt(Integer.MIN_VALUE, -3)); // -3 & 0x1f = 29 in testShrInt()
133 expectEquals(0, $opt$ShrInt(7, Integer.MAX_VALUE)); in testShrInt()
134 expectEquals(7, $opt$ShrInt(7, Integer.MIN_VALUE)); in testShrInt()
167 expectEquals(-1L, $opt$ShrLong(Integer.MIN_VALUE, -3)); // -3 & 0x1f = 29 in testShrLong()
169 expectEquals(0L, $opt$ShrLong(7L, Integer.MAX_VALUE)); in testShrLong()
170 expectEquals(7L, $opt$ShrLong(7L, Integer.MIN_VALUE)); in testShrLong()
185 expectEquals(0, $opt$UShrInt(Integer.MAX_VALUE, 31)); in testUShrInt()
186 expectEquals(1, $opt$UShrInt(Integer.MIN_VALUE, 31)); in testUShrInt()
195 expectEquals(4, $opt$UShrInt(Integer.MIN_VALUE, -3)); // -3 & 0x1f = 29 in testUShrInt()
197 expectEquals(0, $opt$UShrInt(7, Integer.MAX_VALUE)); in testUShrInt()
198 expectEquals(7, $opt$UShrInt(7, Integer.MIN_VALUE)); in testUShrInt()
233 expectEquals(0L, $opt$UShrLong(7L, Integer.MAX_VALUE)); in testUShrLong()
234 expectEquals(7L, $opt$UShrLong(7L, Integer.MIN_VALUE)); in testUShrLong()