Lines Matching refs:ulr_count
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 the
748 * If ulr->ulr_count is not zero, ulfs_lookup found a slot to insert
750 * ulr_count. However, this slot may already be partially populated
753 * Furthermore, if ulr_count is not zero and ulr_endoff is not the
788 if (ulr->ulr_count == 0) {
790 * If ulr_count is 0, then namei could find no
826 * If ulr_count is non-zero, then namei found space for the new
827 * entry in the range ulr_offset to ulr_offset + ulr_count
841 if (ulr->ulr_offset + ulr->ulr_count > dp->i_size) {
846 dp->i_size = ulr->ulr_offset + ulr->ulr_count;
861 * ulr_offset + ulr_count would yield the space.
866 for (loc = lfs_dir_getreclen(fs, ep); loc < ulr->ulr_count; ) {
977 * ulr->ulr_count contains the size of the *previous* directory
979 * ulr_count is 0, the target entry is at the beginning of the
1016 (off_t)(ulr->ulr_offset - ulr->ulr_count), (void *)&ep, &bp, true)) != 0)
1022 * that `ep' is the previous entry when ulr_count != 0.
1025 ulfsdirhash_remove(dp, (ulr->ulr_count == 0) ? ep :
1029 if (ulr->ulr_count == 0) {
1046 ((ulr->ulr_offset - ulr->ulr_count) & (dirblksiz - 1)),