Home | History | Annotate | Download | only in text

Lines Matching defs:decimalBuf

2259             decimalBuf = new char[DECIMAL_BUF_SIZE];
2266 private transient char[] decimalBuf; // mutable - one per instance
2281 int limit = decimalBuf.length < maxDigits ? decimalBuf.length : maxDigits;
2284 decimalBuf[index] = decDigits[(value % 10)];
2293 decimalBuf[--index] = decDigits[0];
2297 // when pattern width is longer than decimalBuf, need extra
2302 buf.append(decimalBuf, index, limit - index);
3952 if (this.decimalBuf != null) {
3953 other.decimalBuf = new char[DECIMAL_BUF_SIZE];