Lines Matching refs:MIBSIZE
61 int adjrefcnt[MIBSIZE]; /* MIB command to adjust inode reference cnt */
62 int adjblkcnt[MIBSIZE]; /* MIB command to adjust inode block count */
63 int adjndir[MIBSIZE]; /* MIB command to adjust number of directories */
64 int adjnbfree[MIBSIZE]; /* MIB command to adjust number of free blocks */
65 int adjnifree[MIBSIZE]; /* MIB command to adjust number of free inodes */
66 int adjnffree[MIBSIZE]; /* MIB command to adjust number of free frags */
67 int adjnumclusters[MIBSIZE]; /* MIB command to adjust number of free clusters */
68 int freefiles[MIBSIZE]; /* MIB command to free a set of files */
69 int freedirs[MIBSIZE]; /* MIB command to free a set of directories */
70 int freeblks[MIBSIZE]; /* MIB command to free a set of data blocks */
128 bzero(adjrefcnt, sizeof(int) * MIBSIZE); in fsckinit()
129 bzero(adjblkcnt, sizeof(int) * MIBSIZE); in fsckinit()
130 bzero(adjndir, sizeof(int) * MIBSIZE); in fsckinit()
131 bzero(adjnbfree, sizeof(int) * MIBSIZE); in fsckinit()
132 bzero(adjnifree, sizeof(int) * MIBSIZE); in fsckinit()
133 bzero(adjnffree, sizeof(int) * MIBSIZE); in fsckinit()
134 bzero(adjnumclusters, sizeof(int) * MIBSIZE); in fsckinit()
135 bzero(freefiles, sizeof(int) * MIBSIZE); in fsckinit()
136 bzero(freedirs, sizeof(int) * MIBSIZE); in fsckinit()
137 bzero(freeblks, sizeof(int) * MIBSIZE); in fsckinit()