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

/libcore/luni/src/main/java/java/math/
H A DBigDecimal.java225 private transient long smallValue; field in class:BigDecimal
243 private BigDecimal(long smallValue, int scale){ argument
244 this.smallValue = smallValue;
246 this.bitLength = bitLength(smallValue);
249 private BigDecimal(int smallValue, int scale){ argument
250 this.smallValue = smallValue;
252 this.bitLength = bitLength(smallValue);
350 smallValue
2985 bitLength(long smallValue) argument
2992 bitLength(int smallValue) argument
[all...]

Completed in 23 milliseconds