Searched defs:itab (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumptraverse.c741 static struct dinode itab[MAXINOPB]; local
749 return (&itab[ino - minino]);
761 bcopy(itab + (lasti - minino), icache + cacheoff, sizeof (itab[0]));
775 (uchar_t *)itab, (size_t)((maxino - minino) * sizeof (*itab)));
776 return (&itab[ino - minino]);
/illumos-gate/usr/src/cmd/fs.d/ufs/ncheck/
H A Dncheck.c67 struct dinode *itab; variable in typeref:struct:dinode
296 itab = (struct dinode *)extend_tbl((uchar_t *)itab, &itab_size,
298 if (itab == 0) {
300 "ncheck: not enough memory for itab table\n");
325 bread(fsbtodb(&sblock, cgimin(&sblock, c)), (char *)itab,
328 if (itab[j].di_smode != 0) {
329 itab[j].di_mode = itab[j].di_smode;
330 if (itab[
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/quot/
H A Dquot.c69 static struct dinode *itab; variable in typeref:struct:dinode
276 itab = (struct dinode *)calloc(sblock.fs_ipg, sizeof (struct dinode));
277 if (itab == NULL) {
286 (char *)itab,
291 qacct(&itab[j]);
/illumos-gate/usr/src/cmd/fs.d/ufs/quotacheck/
H A Dquotacheck.c75 struct dinode itab[ITABSZ]; variable in typeref:struct:dinode
633 if (dp == NULL || ++dp >= &itab[ITABSZ]) {
636 (char *)itab, sizeof (itab));
637 dp = &itab[(int)ino % (int)INOPB(&sblock)];
/illumos-gate/usr/src/cmd/fs.d/ufs/ff/
H A Dff.c70 struct dinode *itab; /* = (struct dinode *)itab; */ variable in typeref:struct:dinode
358 itab = (struct dinode *)calloc(sblock.fs_ipg, sizeof (struct dinode));
371 if ((itab == NULL) || (htab == NULL)) {
378 bread(fsbtodb(&sblock, cgimin(&sblock, c)), (char *)itab,
381 if (itab[j].di_smode != 0) {
382 itab[j].di_mode = itab[j].di_smode;
383 if (itab[j].di_suid != (o_uid_t)UID_LONG)
384 itab[
[all...]

Completed in 65 milliseconds