Home | History | Annotate | Download | only in stdio

Lines Matching defs:BUF

124 	unsigned char buf[BUFSIZ];
134 fake._bf._base = fake._p = buf;
135 fake._bf._size = fake._w = sizeof(buf);
158 char buf[MB_LEN_MAX];
185 clen = wcrtomb(buf, *p++, &mbs);
233 #define BUF 100
327 char buf[BUF]; /* buffer with space for digits of uintmax_t */
639 mbseqlen = wcrtomb(buf,
646 cp = buf;
650 *(cp = buf) = GETARG(int);
919 cp = buf + BUF;
959 size = buf + BUF - cp;
960 if (size > BUF) /* should never happen */
968 cp = buf;
1038 buf[0] = *cp++;
1039 buf[1] = *decimal_point;
1040 PRINT(buf, 2);