Home | History | Annotate | Download | only in math

Lines Matching refs:result

79         char[] result = new char[resLengthInChars];
97 result[--currentChar] = Character.forDigit(
102 result[--currentChar] = '0';
117 result[--currentChar] = Character.forDigit(resDigit, 16);
121 while (result[currentChar] == '0') {
125 result[--currentChar] = '-';
127 return new String(result, currentChar, resLengthInChars - currentChar);
144 char[] result;
179 result = new char[resLengthInChars + 1];
191 result[--currentChar] = (char) (0x0030 + ((int) (prev - v * 10)));
198 result[--currentChar] = (char) (0x0030 + (prev - v * 10));
220 result[--currentChar] = (char) (0x0030 + (resDigit % 10));
224 result[--currentChar] = '0';
234 while (result[currentChar] == '0') {
242 result[--currentChar] = '-';
244 return new String(result, currentChar, resLengthInChars
252 result[j + 1] = result[j];
254 result[++insertPoint] = '.';
256 result[--currentChar] = '-';
258 return new String(result, currentChar, resLengthInChars
263 result[--currentChar] = '0';
265 result[--currentChar] = '.';
266 result[--currentChar] = '0';
268 result[--currentChar] = '-';
270 return new String(result, currentChar, resLengthInChars
280 result1.append(result[currentChar]);
282 result1.append(result, currentChar + 1, resLengthInChars
285 result1.append(result, currentChar, resLengthInChars
300 char[] result;
331 result = new char[resLengthInChars+1];
339 result[--currentChar] = (char) (0x0030 + (prev - v * 10));
345 result[--currentChar] = '-';
347 return new String(result, currentChar, resLengthInChars - currentChar);
354 result[j+1] = result[j];
356 result[++insertPoint]='.';
358 result[--currentChar] = '-';
360 return new String(result, currentChar, resLengthInChars - currentChar + 1);
364 result[--currentChar] = '0';
366 result[--currentChar] = '.';
367 result[--currentChar] = '0';
369 result[--currentChar] = '-';
371 return new String(result, currentChar, resLengthInChars - currentChar);
380 result1.append(result[currentChar]);
382 result1.append(result,currentChar+1,resLengthInChars - currentChar-1);
384 result1.append(result,currentChar,resLengthInChars - currentChar);
458 long result = resSign | exponent | mantissa;
459 return Double.longBitsToDouble(result);