Lines Matching defs:amt_read
259 size_t amt_read;
261 amt_read = fread(buf, 1, bytes_to_read, fp);
262 if (amt_read != bytes_to_read) {
267 if (amt_read == 0 && !fail_on_eof)
271 bytes_to_read, amt_read);
772 size_t amt_read;
818 amt_read = fread(&total_length, 1, sizeof(total_length), fp);
819 if (amt_read < sizeof(total_length)) {
833 amt_read = fread(&byte_order_magic, 1, sizeof(byte_order_magic), fp);
834 if (amt_read < sizeof(byte_order_magic)) {