Home
last modified time | relevance | path

Searched refs:little (Results 1 – 4 of 4) 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.java1454 private static int[] subtract(long val, int[] little) { in subtract() argument
1458 result[0] = (int)(val - (little[0] & LONG_MASK)); in subtract()
1462 if (little.length == 1) { in subtract()
1463 long difference = ((int)val & LONG_MASK) - (little[0] & LONG_MASK); in subtract()
1474 long difference = ((int)val & LONG_MASK) - (little[1] & LONG_MASK); in subtract()
1476 difference = (highWord & LONG_MASK) - (little[0] & LONG_MASK) + (difference >> 32); in subtract()
1547 private static int[] subtract(int[] big, int[] little) { in subtract() argument
1550 int littleIndex = little.length; in subtract()
1556 (little[--littleIndex] & LONG_MASK) + in subtract()
/libcore/ojluni/src/main/java/java/nio/
DHeap-X-Buffer.java.template518 // Android-changed: Merge the big and little endian buffer class.
620 // Android-changed: Merge the big and little endian buffer class.
724 // Android-changed: Merge the big and little endian buffer class.
827 // Android-changed: Merge the big and little endian buffer class.
935 // Android-changed: Merge the big and little endian buffer class.
1043 // Android-changed: Merge the big and little endian buffer class.
DByteBufferAs-X-Buffer.java.template50 // Android-added: Merge with little- and big-endian classes.