Searched refs:offsetDiff (Results 1 – 1 of 1) sorted by relevance
| /libcore/ojluni/src/main/java/jdk/internal/math/ |
| D | FDBigInteger.java | 801 int offsetDiff = subtrahend.offset - minuend.offset; in leftInplaceSub() local 806 if (offsetDiff < 0) { in leftInplaceSub() 808 int rLen = minLen - offsetDiff; in leftInplaceSub() 810 System.arraycopy(mData, 0, mData, -offsetDiff, minLen); in leftInplaceSub() 811 Arrays.fill(mData, 0, -offsetDiff, 0); in leftInplaceSub() 814 System.arraycopy(mData, 0, r, -offsetDiff, minLen); in leftInplaceSub() 819 offsetDiff = 0; in leftInplaceSub() 822 int mIndex = offsetDiff; in leftInplaceSub() 868 int offsetDiff = minuend.offset - subtrahend.offset; in rightInplaceSub() local 873 if (offsetDiff < 0) { in rightInplaceSub() [all …]
|