Home | History | Annotate | Download | only in calculator2

Lines Matching full:wholesize

536         int wholeSize = cache.indexOf('.');
541 if (wholeSize <= lineLength && lastDigit <= 0) {
545 if (lastDigit >= 0 && wholeSize + lastDigit + 1 /* dec.pt. */ <= lineLength) {
550 if (msd > wholeSize && msd <= wholeSize + EXP_COST + 1) {
552 msd = wholeSize - 1;
554 if (msd > wholeSize + MAX_MSD_PREC) {
564 return msd - wholeSize + lineLength - negative - 1;