HomeSort by: relevance | last modified time | path
    Searched refs:ulr_count (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/ufs/lfs/
ulfs_lookup.c 461 * then set results->ulr_count to 0 indicating
465 * results->ulr_offset + results->ulr_count.
469 results->ulr_count = 0;
474 results->ulr_count = 0;
476 results->ulr_count =
480 results->ulr_count = slotsize;
545 * is a previous entry in this block) in results->ulr_count.
549 results->ulr_count = 0;
551 results->ulr_count = results->ulr_offset - prevoff;
742 * If ulr->ulr_count is 0, ulfs_lookup did not find space to insert th
    [all...]
lfs_inode.h 81 int32_t ulr_count; /* Size of free slot in directory. */ member in struct:ulfs_lookup_results
lfs_rename.c 291 * fulr is from a DELETE lookup, so fulr->ulr_count is the size
295 KASSERT(fulr->ulr_count <= from_prev_end);
296 from_prev_start = (from_prev_end - fulr->ulr_count);
299 * tulr is from a RENAME lookup, so tulr->ulr_count is the size
303 KASSERT(tulr->ulr_count < (LFS_MAXDIRSIZE - to_start));
304 to_end = (to_start + tulr->ulr_count);
403 prev_reclen = fulr->ulr_count;
468 fulr->ulr_count = ((offset & (dirblksiz - 1))? prev_reclen : 0);
  /src/sys/ufs/ufs/
ufs_lookup.c 117 results->ulr_count = 0;
119 results->ulr_count = results->ulr_offset - prevoff;
179 * If we didn't find a slot, then set results->ulr_count to 0 indicating
182 * results->ulr_offset + results->ulr_count.
191 results->ulr_count = 0;
198 results->ulr_count = slot->size;
694 * is a previous entry in this block) in results->ulr_count.
877 * If ulr_count is 0, then namei could find no
939 * If ulr_count is non-zero, then namei found space for the new
940 * entry in the range ulr_offset to ulr_offset + ulr_count
    [all...]
ufs_rename.c 571 * fulr is from a DELETE lookup, so fulr->ulr_count is the size
575 KASSERT(fulr->ulr_count <= from_prev_end);
576 from_prev_start = (from_prev_end - fulr->ulr_count);
579 * tulr is from a RENAME lookup, so tulr->ulr_count is the size
583 KASSERT(tulr->ulr_count < (UFS_MAXDIRSIZE - to_start));
584 to_end = (to_start + tulr->ulr_count);
664 prev_reclen = fulr->ulr_count;
729 fulr->ulr_count = ((offset & (dirblksiz - 1))? prev_reclen : 0);
inode.h 59 int32_t ulr_count; /* Size of free slot in directory. */ member in struct:ufs_lookup_results
  /src/sys/ufs/ext2fs/
ext2fs_lookup.c 554 * then set results->ulr_count to 0 indicating
558 * results->ulr_offset + results->ulr_count.
562 results->ulr_count = 0;
566 results->ulr_count = slotsize;
633 * is a previous entry in this block) in results->ulr_count.
637 results->ulr_count = 0;
639 results->ulr_count = results->ulr_offset - prevoff;
872 * (ulr_offset, ulr_count) indicate how the space for the new
913 if (ulr->ulr_count == 0) {
915 * If ulr_count is 0, then namei could find n
    [all...]
ext2fs_rename.c 519 * fulr is from a DELETE lookup, so fulr->ulr_count is the size
523 KASSERT(fulr->ulr_count <= from_prev_end);
524 from_prev_start = (from_prev_end - fulr->ulr_count);
527 * tulr is from a RENAME lookup, so tulr->ulr_count is the size
531 KASSERT(tulr->ulr_count < (EXT2FS_MAXDIRSIZE - to_start));
532 to_end = (to_start + tulr->ulr_count);
610 prev_reclen = fulr->ulr_count;
676 fulr->ulr_count = ((offset & (dirblksiz - 1))? prev_reclen : 0);
ext2fs_htree.c 507 if (ip->i_crap.ulr_count != 0)

Completed in 26 milliseconds