OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minLong
(Results
1 - 4
of
4
) sorted by null
/libcore/luni/src/test/java/libcore/java/math/
BigDecimalTest.java
48
String
minLong
= Long.toString(Long.MIN_VALUE);
49
assertPrecision(
minLong
.length() - 1,
minLong
);
/dalvik/tests/003-omnibus-opcodes/src/
IntMath.java
282
long
minLong
= -9223372036854775808L;
285
long result = (((
minLong
+ plusOne) - plusOne) / negOne) / negOne;
286
assert(result ==
minLong
);
/art/test/003-omnibus-opcodes/src/
IntMath.java
403
long
minLong
= -9223372036854775808L;
406
long result = (((
minLong
+ plusOne) - plusOne) / negOne) / negOne;
407
Main.assertTrue(result ==
minLong
);
/art/test/107-int-math2/src/
Main.java
454
long
minLong
= -9223372036854775808L;
457
long result = (((
minLong
+ plusOne) - plusOne) / negOne) / negOne;
458
if (result !=
minLong
) { return 1; }
Completed in 144 milliseconds