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 80 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 114 results->ulr_count = 0;
116 results->ulr_count = results->ulr_offset - prevoff;
176 * If we didn't find a slot, then set results->ulr_count to 0 indicating
179 * results->ulr_offset + results->ulr_count.
188 results->ulr_count = 0;
195 results->ulr_count = slot->size;
691 * is a previous entry in this block) in results->ulr_count.
874 * If ulr_count is 0, then namei could find no
936 * If ulr_count is non-zero, then namei found space for the new
937 * entry in the range ulr_offset to ulr_offset + ulr_count
    [all...]
ufs_rename.c 568 * fulr is from a DELETE lookup, so fulr->ulr_count is the size
572 KASSERT(fulr->ulr_count <= from_prev_end);
573 from_prev_start = (from_prev_end - fulr->ulr_count);
576 * tulr is from a RENAME lookup, so tulr->ulr_count is the size
580 KASSERT(tulr->ulr_count < (UFS_MAXDIRSIZE - to_start));
581 to_end = (to_start + tulr->ulr_count);
661 prev_reclen = fulr->ulr_count;
726 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 17 milliseconds