Searched refs:scale1 (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/math/ |
D | BigDecimal.java | 5018 private static BigDecimal add(final long xs, int scale1, final long ys, int scale2) { 5019 long sdiff = (long) scale1 - scale2; 5021 return add(xs, ys, scale1); 5037 return add(xs, scaledY, scale1); 5041 new BigDecimal(bigsum, INFLATED, scale1, 0) 5042 : valueOf(bigsum, scale1, 0); 5047 private static BigDecimal add(final long xs, int scale1, BigInteger snd, int scale2) { 5048 int rscale = scale1; 5071 private static BigDecimal add(BigInteger fst, int scale1, BigInteger snd, int scale2) { 5072 int rscale = scale1;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
D | BigDecimalTest.java | 554 BigDecimal scale1 = new BigDecimal(value2, 8); in test_scale() local 555 assertTrue("the scale of the number 123.34560000 is wrong", scale1 in test_scale()
|