Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DMutableBigInteger.java638 long xLong = x & LONG_MASK; in mulsub() local
643 long product = (a[j] & LONG_MASK) * xLong + carry; in mulsub()
658 long xLong = x & LONG_MASK; in mulsubBorrow() local
662 long product = (a[j] & LONG_MASK) * xLong + carry; in mulsubBorrow()
1810 long xLong = x & LONG_MASK;
1812 long product = (dl & LONG_MASK) * xLong;
1818 product = (dh & LONG_MASK) * xLong + carry;