Searched refs:smaliNotLong (Results 1 – 1 of 1) sorted by relevance
/art/test/416-optimizing-arith-not/src/ |
D | Main.java | 50 expectEquals(1L, smaliNotLong(-2L)); in notLong() 51 expectEquals(0L, smaliNotLong(-1L)); in notLong() 52 expectEquals(-1L, smaliNotLong(0L)); in notLong() 53 expectEquals(-2L, smaliNotLong(1L)); in notLong() 54 expectEquals(2147483647L, smaliNotLong(-2147483648L)); // -(2^31) in notLong() 55 expectEquals(2147483646L, smaliNotLong(-2147483647L)); // -(2^31 - 1) in notLong() 56 expectEquals(-2147483647L, smaliNotLong(2147483646L)); // 2^31 - 2 in notLong() 57 expectEquals(-2147483648L, smaliNotLong(2147483647L)); // 2^31 - 1 in notLong() 58 expectEquals(9223372036854775807L, smaliNotLong(-9223372036854775808L)); // -(2^63) in notLong() 59 expectEquals(9223372036854775806L, smaliNotLong(-9223372036854775807L)); // -(2^63 - 1) in notLong() [all …]
|