Lines Matching refs:bytes
110 int bytes;
116 for (bytes = 0; bytes < (n - 1); ++bytes) {
117 cnt = read(stream->_file, &s[bytes], 1);
119 if (bytes != 0) {
120 s[bytes] = '\0';
128 if (bytes != 0) {
129 s[bytes] = '\0';
135 if (s[bytes] == '\n') {
136 s[bytes + 1] = '\0';
141 s[bytes] = '\0';
251 ssize_t bytes, totbytes = 0;
257 for (items = 0, bytes = 0; items < nitems; items++) {
258 bytes = read(stream->_file, &strp[totbytes], size);
259 if (bytes < 0) {
262 } else if (bytes == 0) {
265 } else if (bytes == size) {
266 stream->_offset += bytes;
267 totbytes += bytes;