Home
last modified time | relevance | path

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

/original-bsd/local/local.cmd/
H A Dncpio.c28 #define CPIOBSZ 8192 /* file read/write */ macro
57 short Buf[CPIOBSZ/2], *Dbuf;
58 char BBuf[CPIOBSZ], *Cbuf;
326 ct = filesz>CPIOBSZ? CPIOBSZ: filesz;
363 ct = filesz>CPIOBSZ? CPIOBSZ: filesz;
462 for(; filesz > 0; filesz -= CPIOBSZ) {
463 ct = filesz>CPIOBSZ? CPIOBSZ: filesz;
1410 if (linklen > CPIOBSZ) {
1511 while(len > CPIOBSZ) {
1513 readhdr(BBuf, CPIOBSZ);
[all …]
/original-bsd/old/cpio/
H A Dcpio.c57 #define CPIOBSZ 4096 /* file read/write */ macro
85 static char Buf[CPIOBSZ], *Cbuf;
374 for(filesz=mklong(Hdr.h_filesize); filesz>0; filesz-= CPIOBSZ){
375 ct = filesz>CPIOBSZ? CPIOBSZ: filesz;
426 for(filesz=mklong(Hdr.h_filesize); filesz>0; filesz-= CPIOBSZ){
427 ct = filesz>CPIOBSZ? CPIOBSZ: filesz;
545 for(; filesz > 0; filesz -= CPIOBSZ) {
546 ct = filesz>CPIOBSZ? CPIOBSZ: filesz;