Home
last modified time | relevance | path

Searched refs:entryoffsetinblock (Results 1 – 4 of 4) sorted by relevance

/openbsd/sys/isofs/cd9660/
H A Dcd9660_lookup.c103 int entryoffsetinblock; /* offset of ep in bp's buffer */ in cd9660_lookup() local
180 entryoffsetinblock = 0; in cd9660_lookup()
185 if ((entryoffsetinblock = dp->i_offset & bmask) && in cd9660_lookup()
208 entryoffsetinblock = 0; in cd9660_lookup()
214 ((char *)bp->b_data + entryoffsetinblock); in cd9660_lookup()
228 if (entryoffsetinblock + reclen > imp->logical_block_size) in cd9660_lookup()
265 + entryoffsetinblock; in cd9660_lookup()
281 ino = dbtob(bp->b_blkno) + entryoffsetinblock; in cd9660_lookup()
295 entryoffsetinblock += reclen; in cd9660_lookup()
309 entryoffsetinblock = saveoffset & bmask; in cd9660_lookup()
[all …]
H A Dcd9660_vnops.c399 int entryoffsetinblock; in cd9660_readdir() local
432 if ((entryoffsetinblock = idp->curroff & bmask) && in cd9660_readdir()
452 entryoffsetinblock = 0; in cd9660_readdir()
458 ((char *)bp->b_data + entryoffsetinblock); in cd9660_readdir()
474 if (entryoffsetinblock + reclen > imp->logical_block_size) { in cd9660_readdir()
491 ino = dbtob(bp->b_blkno) + entryoffsetinblock; in cd9660_readdir()
531 entryoffsetinblock += reclen; in cd9660_readdir()
/openbsd/sys/ufs/ufs/
H A Dufs_lookup.c108 int entryoffsetinblock; /* offset of ep in bp's buffer */ in ufs_lookup() local
213 entryoffsetinblock = 0; /* silence compiler warning */ in ufs_lookup()
233 entryoffsetinblock = 0; in ufs_lookup()
238 if ((entryoffsetinblock = dp->i_offset & bmask) && in ufs_lookup()
260 entryoffsetinblock = 0; in ufs_lookup()
267 (entryoffsetinblock & (DIRBLKSIZ - 1)) == 0) { in ufs_lookup()
278 ep = (struct direct *)((char *)bp->b_data + entryoffsetinblock); in ufs_lookup()
280 (dirchk && ufs_dirbadentry(vdp, ep, entryoffsetinblock))) { in ufs_lookup()
284 i = DIRBLKSIZ - (entryoffsetinblock & (DIRBLKSIZ - 1)); in ufs_lookup()
286 entryoffsetinblock += i; in ufs_lookup()
[all …]
/openbsd/sys/ufs/ext2fs/
H A Dext2fs_lookup.c74 int entryoffsetinblock);
236 int entryoffsetinblock; /* offset of ep in bp's buffer */ in ext2fs_lookup() local
311 entryoffsetinblock = 0; in ext2fs_lookup()
316 if ((entryoffsetinblock = dp->i_offset & bmask) && in ext2fs_lookup()
337 entryoffsetinblock = 0; in ext2fs_lookup()
349 cnp, &entryoffsetinblock, &prevoff, &enduseful, &ss); in ext2fs_lookup()
356 ((char *)bp->b_data + (entryoffsetinblock & bmask)); in ext2fs_lookup()
448 if (entryoffsetinblock + EXT2FS_DIRSIZ(ep->e2d_namlen) in ext2fs_lookup()
452 entryoffsetinblock + EXT2FS_DIRSIZ(ep->e2d_namlen)); in ext2fs_lookup()
711 int entryoffsetinblock) in ext2fs_dirbadentry() argument
[all …]