Searched refs:lvalue (Results 1 – 2 of 2) sorted by relevance
367 private void developLongDigits( int decExponent, long lvalue, int insignificantDigits ){ in developLongDigits() argument372 long residue = lvalue % pow10; in developLongDigits()373 lvalue /= pow10; in developLongDigits()377 lvalue++; in developLongDigits()382 if ( lvalue <= Integer.MAX_VALUE ){ in developLongDigits()383 assert lvalue > 0L : lvalue; // lvalue <= 0 in developLongDigits()386 int ivalue = (int)lvalue; in developLongDigits()404 c = (int)(lvalue%10L); in developLongDigits()405 lvalue /= 10L; in developLongDigits()408 c = (int)(lvalue%10L); in developLongDigits()[all …]
333 private void developLongDigits(int decExponent, long lvalue, int insignificantDigits) { in developLongDigits() argument