Home | History | Annotate | Download | only in common

Lines Matching defs:bytes_to_read

338     off_t bytes_to_read = sizeof(buf);
339 if (size > 0 && bytes_to_read > size) {
340 bytes_to_read = size;
342 size_t nbytes = fread(buf, 1, bytes_to_read, fp);