Home | History | Annotate | Download | only in math

Lines Matching refs:RoundingMode

24 import static java.math.RoundingMode.CEILING;
25 import static java.math.RoundingMode.FLOOR;
26 import static java.math.RoundingMode.HALF_EVEN;
33 import java.math.RoundingMode;
63 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
67 public static int log2(BigInteger x, RoundingMode mode) {
122 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
126 public static int log10(BigInteger x, RoundingMode mode) {
178 * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and
182 public static BigInteger sqrt(BigInteger x, RoundingMode mode) {
261 * {@code RoundingMode}.
266 public static BigInteger divide(BigInteger p, BigInteger q, RoundingMode mode){