Searched refs:augend (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java127 * <tr><td>Add</td><td>max(addend.scale(), augend.scale())</td>
1075 * augend)}, and whose scale is {@code max(this.scale(),
1076 * augend.scale())}.
1078 * @param augend value to be added to this {@code BigDecimal}.
1079 * @return {@code this + augend}
1081 public BigDecimal add(BigDecimal augend) { argument
1083 long ys = augend.intCompact;
1085 BigInteger snd = (ys != INFLATED) ? null : augend.intVal;
1088 long sdiff = (long)rscale - augend.scale;
1092 rscale = augend
1134 add(BigDecimal augend, MathContext mc) argument
1214 preAlign(BigDecimal lhs, BigDecimal augend, long padding, MathContext mc) argument
[all...]

Completed in 43 milliseconds