Home
last modified time | relevance | path

Searched refs:amt_to_read (Results 1 – 1 of 1) sorted by relevance

/titanic_50/usr/src/cmd/cpio/
H A Dcpio.c2826 off_t amt_to_read; in read_file() local
2832 amt_to_read = file_size; in read_file()
2834 if (read_exact && amt_to_read < CPIOBSZ) in read_file()
2835 readsz = amt_to_read; in read_file()
2855 *real_filesz = file_size - amt_to_read; in read_file()
2857 } else if (amount_read > amt_to_read) { in read_file()
2860 (amount_read - amt_to_read); in read_file()
2861 amount_read = amt_to_read; in read_file()
2862 } else if (amount_read == amt_to_read) { in read_file()
2870 amt_to_read -= (off_t)amount_read; in read_file()
[all …]