Home | History | Annotate | Download | only in stdio

Lines Matching defs:BUF

49 #define	BUF		513	/* Maximum length of numeric string. */
114 wchar_t buf[BUF]; /* buffer for numeric conversions */
537 if (width == 0 || width > sizeof(buf) /
538 sizeof(*buf) - 1)
539 width = sizeof(buf) / sizeof(*buf) - 1;
541 for (p = buf; width; width--) {
613 buf + 1 + !!(flags & HAVESIGN)) {
641 if (p > buf)
655 res = wcstoimax(buf, NULL, base);
657 res = wcstoumax(buf, NULL, base);
679 nread += p - buf;
686 if (width == 0 || width > sizeof(buf) /
687 sizeof(*buf) - 1)
688 width = sizeof(buf) / sizeof(*buf) - 1;
690 for (p = buf; width; width--) {
751 while (p > buf)
766 long double res = wcstold(buf, NULL);
769 double res = wcstod(buf, NULL);
772 float res = wcstof(buf, NULL);
777 nread += p - buf;