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

  /src/usr.bin/iconv/
iconv.c 92 #define OUTBUFSIZE (INBUFSIZE * 2)
98 char inbuf[INBUFSIZE], outbuf[OUTBUFSIZE], *out;
118 outbytes = OUTBUFSIZE;
123 if (outbytes < OUTBUFSIZE) {
124 if (fwrite(outbuf, 1, OUTBUFSIZE - outbytes, fo)
125 != OUTBUFSIZE - outbytes)
159 outbytes = OUTBUFSIZE;
164 if (outbytes < OUTBUFSIZE) {
165 if (fwrite(outbuf, 1, OUTBUFSIZE - outbytes, fo)
166 != OUTBUFSIZE - outbytes
    [all...]
  /src/usr.bin/mail/
mime_codecs.c 116 #define OUTBUFSIZE (INBUFSIZE * 2)
121 char inbuf[INBUFSIZE], outbuf[OUTBUFSIZE], *out;
136 outbytes = OUTBUFSIZE;
171 if (outbytes < OUTBUFSIZE)
172 (void)fwrite(outbuf, 1, OUTBUFSIZE - outbytes, fo);
176 outbytes = OUTBUFSIZE;
184 if (outbytes < OUTBUFSIZE)
185 (void)fwrite(outbuf, 1, OUTBUFSIZE - outbytes, fo);

Completed in 17 milliseconds