Searched refs:bigIndex (Results 1 – 1 of 1) sorted by relevance
1406 int bigIndex = big.length; in subtract() local1407 int result[] = new int[bigIndex]; in subtract()1411 difference = (big[--bigIndex] & LONG_MASK) - val; in subtract()1412 result[bigIndex] = (int)difference; in subtract()1414 difference = (big[--bigIndex] & LONG_MASK) - (val & LONG_MASK); in subtract()1415 result[bigIndex] = (int)difference; in subtract()1416 … difference = (big[--bigIndex] & LONG_MASK) - (highWord & LONG_MASK) + (difference >> 32); in subtract()1417 result[bigIndex] = (int)difference; in subtract()1422 while (bigIndex > 0 && borrow) in subtract()1423 borrow = ((result[--bigIndex] = big[bigIndex] - 1) == -1); in subtract()[all …]