Lines Matching refs:fsize
53 off_t fsize; /* file size */ member
350 fp->fsize = stb.st_size; in gstat()
357 fp->ftype = 'b'; fp->fsize = (off_t)stb.st_rdev; break; in gstat()
359 fp->ftype = 'c'; fp->fsize = (off_t)stb.st_rdev; break; in gstat()
361 fp->ftype = 's'; fp->fsize = 0LL; break; in gstat()
363 fp->ftype = 'p'; fp->fsize = 0LL; break; in gstat()
413 fp->fsize = stb.st_size; in gstat()
685 char gname[32], uname[32], fsize[32], ftime[32]; in fmtlstuff() local
701 (void) sprintf(fsize, "%3ld,%4ld", in fmtlstuff()
702 major(p->fsize), minor(p->fsize)); in fmtlstuff()
704 (void) sprintf(fsize, "%8d", 0); in fmtlstuff()
706 (void) sprintf(fsize, p->fsize < 100000000 ? "%8lld" : \ in fmtlstuff()
707 "%lld", p->fsize); in fmtlstuff()
720 p->acl, p->fnl, uname, gflg ? gname : "", fsize, ftime); in fmtlstuff()