Lines Matching refs:smaliNotLong
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()
60 expectEquals(-9223372036854775807L, smaliNotLong(9223372036854775806L)); // 2^63 - 2 in notLong()
61 expectEquals(-9223372036854775808L, smaliNotLong(9223372036854775807L)); // 2^63 - 1 in notLong()
73 private static long smaliNotLong(long a) throws Exception { in smaliNotLong() method in Main