Lines Matching defs:rem
51 size_t rem = nbytes;
53 while (rem > 0) {
54 count = read (fd, cbuf, rem);
64 rem -= count;
76 size_t rem = nbytes;
82 while (rem > 0) {
85 count = _read (sock, cbuf, rem);
87 count = recv (sock, cbuf, rem, 0);
95 count = _read (sock, cbuf, rem);
98 count = recv (sock, cbuf, rem, 0);
115 rem -= count;