Searched refs:intVal (Results 1 – 3 of 3) sorted by relevance
29 int intVal = 42; field in FieldAccessBenchmark36 result = intVal; in timeField()63 int cachedIntVal = this.intVal; in timeFieldCached()
215 private BigInteger intVal; field in BigDecimal498 intVal = new BigInteger(bi); in BigDecimal()2125 && (bitLength < 64 ? (x1.smallValue == smallValue) : x1.intVal.equals(intVal)); in equals()2172 hashCode = 17 * intVal.hashCode() + scale; in hashCode()2743 intVal = null; in smallRound()2876 this.bitLength = intVal.bitLength(); in readObject()2878 this.smallValue = intVal.longValue(); in readObject()2892 if(intVal == null) { in getUnscaledValue()2893 intVal = BigInteger.valueOf(smallValue); in getUnscaledValue()2895 return intVal; in getUnscaledValue()[all …]
3753 public BigDecimalLayout(BigInteger intVal, int scale, BigDecimalLayoutForm form) {3754 layout(intVal, scale, form);3793 private void layout(BigInteger intVal, int scale, BigDecimalLayoutForm form) {3794 char coeff[] = intVal.toString().toCharArray();