Searched refs:i_offset (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/sys/fs/cd9660/
H A Dcd9660_lookup.c121 doff_t i_offset; /* cached i_offset value. */ local
180 i_offset = 0;
183 i_offset = i_diroff;
184 if ((entryoffsetinblock = i_offset & bmask) &&
185 (error = cd9660_blkatoff(vdp, (off_t)i_offset, NULL, &bp)))
193 while (i_offset < endsearch) {
199 if ((i_offset & bmask) == 0) {
203 cd9660_blkatoff(vdp, (off_t)i_offset, NULL, &bp)) != 0)
216 i_offset
[all...]
/freebsd-13-stable/sys/fs/ext2fs/
H A Dext2_lookup.c334 doff_t i_offset; /* cached i_offset value */ local
337 doff_t prevoff; /* prev entry dp->i_offset */
391 &bp, &entryoffsetinblock, &i_offset, &prevoff,
395 (i_offset & bmask));
398 i_offset = roundup2(dp->i_size, DIRBLKSIZ);
423 i_offset = 0;
426 i_offset = i_diroff;
427 if ((entryoffsetinblock = i_offset & bmask) &&
428 (error = ext2_blkatoff(vdp, (off_t)i_offset, NUL
[all...]
H A Dinode.h88 doff_t i_offset; /* Offset of free space in directory. */ member in struct:inode
/freebsd-13-stable/sys/ufs/ufs/
H A Dufs_lookup.c202 doff_t i_offset; /* cached i_offset value. */ local
208 doff_t prevoff; /* prev entry dp->i_offset */
303 &i_offset, &bp, nameiop == DELETE ? &prevoff : NULL)) {
306 (i_offset & bmask));
309 i_offset = roundup2(dp->i_size, DIRBLKSIZ);
330 i_offset = 0;
333 i_offset = i_diroff;
334 if ((entryoffsetinblock = i_offset & bmask) &&
335 (error = UFS_BLKATOFF(vdp, (off_t)i_offset, NUL
[all...]
H A Dinode.h108 doff_t i_offset; /* Offset of free space in directory. */ member in struct:inode
298 #define I_OFFSET(ip) ((ip)->i_offset)
299 #define SET_I_OFFSET(ip, off) ((ip)->i_offset = (off))

Completed in 83 milliseconds