Searched refs:startinum (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/sbin/fsck_ffs/
H A Dinode.c54 static ino_t startinum; variable
289 if (startinum == 0 ||
290 inumber < startinum || inumber >= startinum + INOPB(&sblock)) {
295 startinum = (inumber / INOPB(&sblock)) * INOPB(&sblock);
348 startinum = 0;
/openbsd-current/sbin/fsck_ext2fs/
H A Dinode.c63 static ino_t startinum; variable
337 if (startinum == 0 ||
338 inumber < startinum || inumber >= startinum + sblock.e2fs_ipb) {
343 startinum = ((inumber -1) / sblock.e2fs_ipb) * sblock.e2fs_ipb + 1;
391 startinum = 0;
/openbsd-current/sbin/growfs/
H A Dgrowfs.c1618 static ino_t startinum = 0; /* first inode in cached block */ local
1638 if (startinum == 0 ||
1639 inumber < startinum || inumber >= startinum + INOPB(&sblock)) {
1642 startinum = (inumber / INOPB(&sblock)) * INOPB(&sblock);

Completed in 216 milliseconds