Lines Matching defs:length
174 uint16_t rec_len; // Directory entry length
175 uint8_t name_len; // Name length
196 uint32_t dir_acl; // Directory ACL (or top bits of file length)
548 off_t length;
566 // Determine appropriate block size and block count from file length.
567 // (If no length, default to 4k. They can override it on the cmdline.)
569 length = fdlength(TT.fsfd);
570 if (!TT.blocksize) TT.blocksize = (length && length < 1<<29) ? 1024 : 4096;
572 if (!TT.blocks) TT.blocks = length/TT.blocksize;
596 length = check_treesize(dtb, &(dtb->st.st_size));