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()2131 && (bitLength < 64 ? (x1.smallValue == smallValue) : x1.intVal.equals(intVal)); in equals()2178 hashCode = 17 * intVal.hashCode() + scale; in hashCode()2796 intVal = null; in smallRound()2929 this.bitLength = intVal.bitLength(); in readObject()2931 this.smallValue = intVal.longValue(); in readObject()2945 if(intVal == null) { in getUnscaledValue()2946 intVal = BigInteger.valueOf(smallValue); in getUnscaledValue()2948 return intVal; in getUnscaledValue()[all …]
3786 public BigDecimalLayout(BigInteger intVal, int scale, BigDecimalLayoutForm form) {3787 layout(intVal, scale, form);3826 private void layout(BigInteger intVal, int scale, BigDecimalLayoutForm form) {3827 char coeff[] = intVal.toString().toCharArray();