Home
last modified time | relevance | path

Searched refs:little (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DThreadTestHelper.smali35 # introduced so that the stack trace is a little bit more interesting.
/libcore/ojluni/src/main/java/java/math/
DBigInteger.java1368 private static int[] subtract(long val, int[] little) { in subtract() argument
1372 result[0] = (int)(val - (little[0] & LONG_MASK)); in subtract()
1376 if (little.length == 1) { in subtract()
1377 long difference = ((int)val & LONG_MASK) - (little[0] & LONG_MASK); in subtract()
1388 long difference = ((int)val & LONG_MASK) - (little[1] & LONG_MASK); in subtract()
1390 difference = (highWord & LONG_MASK) - (little[0] & LONG_MASK) + (difference >> 32); in subtract()
1461 private static int[] subtract(int[] big, int[] little) { in subtract() argument
1464 int littleIndex = little.length; in subtract()
1470 (little[--littleIndex] & LONG_MASK) + in subtract()