HomeSort by: relevance | last modified time | path
    Searched defs:expscale (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/libquadmath/printf/
printf_fp.c 799 int expscale;
1117 expscale = 10;
1118 while (expscale <= exponent)
1119 expscale *= 10;
1127 expscale /= 10;
1128 *wcp++ = L_('0') + (exponent / expscale);
1129 exponent %= expscale;
1131 while (expscale > 10);
797 int expscale; local
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
printf_fp.c 799 int expscale;
1117 expscale = 10;
1118 while (expscale <= exponent)
1119 expscale *= 10;
1127 expscale /= 10;
1128 *wcp++ = L_('0') + (exponent / expscale);
1129 exponent %= expscale;
1131 while (expscale > 10);
797 int expscale; local

Completed in 21 milliseconds