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

  /src/usr.bin/iconv/
iconv.c 100 size_t inbytes, outbytes, ret, invalids; local
112 while ((inbytes = fread(inbuf, 1, INBUFSIZE, fi)) > 0) {
114 while (inbytes > 0) {
119 ret = __iconv(cd, __UNCONST(&in), &inbytes, &out,
140 (void)memmove(inbuf, in, inbytes);
141 ret = fread(inbuf + inbytes, 1,
142 INBUFSIZE - inbytes, fi);
154 inbytes += ret;
  /src/external/gpl2/xcvs/dist/src/
run.c 488 ssize_t inbytes; local
495 while ((inbytes = read (stderr_pipe[0], buf, sizeof buf)) != 0)
499 if (inbytes < 0)
509 buf + outbytes, inbytes - outbytes);
519 while (inbytes != outbytes);
  /src/usr.bin/mail/
mime_codecs.c 123 size_t inbytes, outbytes, ret; local
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;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_disk_windows.c 346 DWORD inbytes; local
362 1024, &inbytes, NULL);
  /src/external/bsd/libarchive/dist/test_utils/
test_main.c 1786 DWORD inbytes; local
1852 1024, &inbytes, NULL);

Completed in 25 milliseconds