Searched refs:resLengthInChars (Results 1 – 1 of 1) sorted by relevance
76 int resLengthInChars = (int) (val.abs().bitLength() / bitsForRadixDigit + ((sign < 0) ? 1 in bigInteger2String() local79 char[] result = new char[resLengthInChars]; in bigInteger2String()80 int currentChar = resLengthInChars; in bigInteger2String()127 return new String(result, currentChar, resLengthInChars - currentChar); in bigInteger2String()142 int resLengthInChars; in toDecimalScaledString() local174 resLengthInChars = numberLength * 10 + 1 + 7; in toDecimalScaledString()179 result = new char[resLengthInChars + 1]; in toDecimalScaledString()183 currentChar = resLengthInChars; in toDecimalScaledString()239 int exponent = resLengthInChars - currentChar - scale - 1; in toDecimalScaledString()244 return new String(result, currentChar, resLengthInChars in toDecimalScaledString()[all …]