Lines Matching refs:bytes
36 uvlong bytes; in main() local
87 bytes = strtoull(fields[5], 0, 10); in main()
90 if(bytes) in main()
91 seekpast(bytes); in main()
98 name, mode, uid, gid, mtime, bytes); in main()
99 if(bytes) in main()
100 seekpast(bytes); in main()
106 extract(name, mode, mtime, uid, gid, bytes); in main()
204 extract(char *name, ulong mode, ulong mtime, char *uid, char *gid, uvlong bytes) in extract() argument
214 print("x %q %llud bytes\n", name, bytes); in extract()
219 seekpast(bytes); in extract()
222 for(tot = 0; tot < bytes; tot += n){ in extract()
224 if(tot + n > bytes) in extract()
225 n = bytes - tot; in extract()
270 seekpast(uvlong bytes) in seekpast() argument
276 for(tot = 0; tot < bytes; tot += n){ in seekpast()
278 if(tot + n > bytes) in seekpast()
279 n = bytes - tot; in seekpast()