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

  /src/usr.bin/iconv/
iconv.c 99 size_t inbytes, outbytes, ret, invalids; local in function:do_conv
111 while ((inbytes = fread(inbuf, 1, INBUFSIZE, fp)) > 0) {
113 while (inbytes > 0) {
118 ret = __iconv(cd, __UNCONST(&in), &inbytes, &out,
136 (void)memmove(inbuf, in, inbytes);
137 ret = fread(inbuf + inbytes, 1,
138 INBUFSIZE - inbytes, fp);
150 inbytes += ret;
  /src/usr.bin/mail/
mime_codecs.c 123 size_t inbytes, outbytes, ret; local in function:mime_ficonv
132 while ((inbytes = fread(inbuf, 1, INBUFSIZE, fi)) > 0) {
134 while (inbytes > 0) {
137 ret = mime_iconv(cd, &in, &inbytes, &out, &outbytes);
151 (void)memmove(inbuf, in, inbytes);
152 ret = fread(inbuf + inbytes, 1,
153 INBUFSIZE - inbytes, fi);
168 inbytes += ret;

Completed in 12 milliseconds