HomeSort by: relevance | last modified time | path
    Searched defs:entryoffsetinblock (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/fs/cd9660/
cd9660_lookup.c 106 int entryoffsetinblock; /* offset of ep in bp's buffer */ local in function:cd9660_lookup
184 entryoffsetinblock = 0;
189 if ((entryoffsetinblock = dp->i_offset & bmask) &&
212 entryoffsetinblock = 0;
219 ((char *)bp->b_data + entryoffsetinblock);
233 if (entryoffsetinblock + reclen > imp->logical_block_size)
271 + entryoffsetinblock;
287 ino = dbtob(bp->b_blkno) + entryoffsetinblock;
303 entryoffsetinblock += reclen;
317 entryoffsetinblock = saveoffset & bmask
    [all...]
cd9660_vnops.c 401 int entryoffsetinblock; local in function:cd9660_readdir
437 if ((entryoffsetinblock = idp->curroff & bmask) &&
457 entryoffsetinblock = 0;
464 ((char *)bp->b_data + entryoffsetinblock);
480 if (entryoffsetinblock + reclen > imp->logical_block_size) {
498 entryoffsetinblock;
545 entryoffsetinblock += reclen;
  /src/sys/ufs/ext2fs/
ext2fs_lookup.c 84 int entryoffsetinblock);
286 int entryoffsetinblock; /* offset of ep in bp's buffer */ local in function:ext2fs_lookup
377 entryoffsetinblock = 0;
382 if ((entryoffsetinblock = results->ulr_offset & bmask) &&
401 entryoffsetinblock = 0;
404 cnp->cn_namelen, &bp, &entryoffsetinblock, &i_offset,
437 entryoffsetinblock = 0;
444 (entryoffsetinblock & (dirblksiz - 1)) == 0) {
457 ((char *)bp->b_data + entryoffsetinblock);
460 ext2fs_dirbadentry(vdp, ep, entryoffsetinblock))) {
    [all...]
  /src/sys/ufs/lfs/
ulfs_lookup.c 125 int entryoffsetinblock; /* offset of ep in bp's buffer */ local in function:ulfs_lookup
263 entryoffsetinblock = 0; /* silence compiler warning */
282 entryoffsetinblock = 0;
287 if ((entryoffsetinblock = results->ulr_offset & bmask) &&
312 entryoffsetinblock = 0;
319 (entryoffsetinblock & (dirblksiz - 1)) == 0) {
331 ep = (LFS_DIRHEADER *)((char *)bp->b_data + entryoffsetinblock);
333 (lfs_dirchk && ulfs_dirbadentry(vdp, ep, entryoffsetinblock))) {
337 i = dirblksiz - (entryoffsetinblock & (dirblksiz - 1));
339 entryoffsetinblock += i
    [all...]
  /src/sys/ufs/ufs/
ufs_lookup.c 334 int entryoffsetinblock; /* offset of ep in bp's buffer */ local in function:ufs_lookup
454 entryoffsetinblock = 0; /* silence compiler warning */
475 entryoffsetinblock = 0;
480 entryoffsetinblock = results->ulr_offset & bmask;
481 if (entryoffsetinblock != 0 &&
506 entryoffsetinblock = 0;
513 (entryoffsetinblock & (dirblksiz - 1)) == 0) {
525 ep = (void *)((char *)bp->b_data + entryoffsetinblock);
529 (msg = ufs_dirbadentry(vdp, ep, entryoffsetinblock)))) {
532 (entryoffsetinblock & (dirblksiz - 1))
    [all...]

Completed in 14 milliseconds