Lines Matching refs:L_
142 wchar_t thousands_sepwc = L_('\0');
222 return L_('0') + hi;
231 return L_('0') + hi;
267 if (decimalwc == L_('\0'))
271 assert (decimalwc != L_('\0'));
273 decimalwc = L_('.');
296 if (thousands_sepwc == L_('\0'))
378 wspecial = L_("NAN");
383 wspecial = L_("nan");
392 wspecial = L_("INF");
397 wspecial = L_("inf");
921 *wcp++ = L_('0');
934 if (*wcp++ != L_('0'))
948 if (next_digit != L_('0') && next_digit != L_('5'))
967 if (round_away (is_neg, (last_digit - L_('0')) & 1, next_digit >= L_('5'),
977 while (*--wtp != decimalwc && *wtp == L_('9'))
979 *wtp = L_('0');
989 && wstartp[0] == L_('0'),
1003 while (--wtp >= wstartp && *wtp == L_('9'))
1004 *wtp = L_('0');
1029 *--wstartp = L_('1');
1034 wstartp[intdig_no + 2] = L_('0');
1049 *--wstartp = L_('1');
1067 while (fracdig_no > fracdig_min + added_zeros && *(wcp - 1) == L_('0'))
1098 assert (wstartp[0] == L_('1'));
1099 memcpy (wstartp, L_("0.0001"), 6 * sizeof (wchar_t));
1105 wstartp[6 + cnt] = L_('0');
1114 *wcp++ = expsign ? L_('-') : L_('+');
1123 *wcp++ = L_('0');
1128 *wcp++ = L_('0') + (exponent / expscale);
1132 *wcp++ = L_('0') + exponent;