Home | History | Annotate | Download | only in fsck_ffs

Lines Matching refs:id_loc

215 	idesc->id_loc = 0;
228 memmove(bp->b_un.b_buf + idesc->id_loc - dsize, dbuf,
251 if (idesc->id_loc % dirblksiz == 0 && idesc->id_filesize > 0 &&
252 idesc->id_loc < blksiz) {
253 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc);
260 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc);
270 idesc->id_loc += dirblksiz;
275 if (idesc->id_filesize <= 0 || idesc->id_loc >= blksiz)
277 dploc = idesc->id_loc;
279 idesc->id_loc += iswap16(dp->d_reclen);
281 if ((idesc->id_loc % dirblksiz) == 0)
283 ndp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc);
284 if (idesc->id_loc < blksiz && idesc->id_filesize > 0 &&
286 size = dirblksiz - (idesc->id_loc % dirblksiz);
287 idesc->id_loc += size;
320 spaceleft = dirblksiz - (idesc->id_loc % dirblksiz);