Searched defs:addend (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DRandom.java89 private static final long addend = 0xBL; field in class:Random
203 nextseed = (oldseed * multiplier + addend) & mask;
/libcore/ojluni/src/main/java/sun/misc/
H A DFDBigInteger.java1019 * @param x The first addend of the sum to compare.
1020 * @param y The second addend of the sum to compare.
1225 * @param addend The value to add to the product of this
1229 @ requires this.value()*UNSIGNED(iv) + UNSIGNED(addend) < ((\bigint)1) << ((this.data.length + this.offset)*32);
1231 @ ensures this.value() == \old(this.value()*UNSIGNED(iv) + UNSIGNED(addend));
1233 private /*@ helper @*/ void multAddMe(int iv, int addend) { argument
1236 long p = v * (data[0] & LONG_MASK) + (addend & LONG_MASK);
/libcore/luni/src/main/java/java/math/
H A DBigInteger.java1146 static int inplaceAdd(int[] a, int aSize, int addend) { argument
1147 long carry = addend & 0xFFFFFFFFL;

Completed in 627 milliseconds