Searched refs:little (Results 1 – 2 of 2) sorted by relevance
35 # introduced so that the stack trace is a little bit more interesting.
1368 private static int[] subtract(long val, int[] little) { in subtract() argument1372 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() argument1464 int littleIndex = little.length; in subtract()1470 (little[--littleIndex] & LONG_MASK) + in subtract()