Searched refs:expscale (Results 1 - 1 of 1) sorted by relevance

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fp.c801 int expscale; local
1066 expscale = 10;
1067 while (expscale <= exponent)
1068 expscale *= 10;
1076 expscale /= 10;
1077 *wcp++ = L'0' + (exponent / expscale);
1078 exponent %= expscale;
1080 while (expscale > 10);

Completed in 86 milliseconds