Lines Matching defs:this
20 -N inodes Allocate this many inodes
22 -m percent Reserve this percent of filesystem space for root user
134 uint16_t block_group_nr; // block group # of this superblock
166 uint16_t free_blocks_count; // How many free blocks in this group?
167 uint16_t free_inodes_count; // How many free inodes in this group?
288 static struct dirtree *treenext(struct dirtree *this)
290 while (this && !this->next) this = this->parent;
291 if (this) this = this->next;
293 return this;
297 // Returns blocks used by this directory, assigns bytes used to *size.
323 // To do this right I need to copy the tree and sort it, but here's a really
424 // Does this group contain a superblock backup (and group descriptor table)?
510 // TODO: teach this about indirect blocks.
527 // when x is 32 bits. The optimizer should clean this up.
588 // point back into this.
608 // groups, and loop until this is enough groups to store this many blocks.
643 // Where does this group end?
668 // Figure out what sector this group starts in.
671 // Find next array slot in this block (flush block if full).
678 // How many free inodes in this group?
690 // How many free blocks in this group?
739 // Write inode table for this group (TODO)