Lines Matching defs:next
166 * Find the next allocated block (end of free extent).
228 xfs_rtblock_t *nextp, /* out: next block to try */
239 xfs_rtblock_t next; /* next rtblock to try */
255 * If it's not so then next will contain the first non-free.
257 error = xfs_rtcheck_range(mp, tp, i, maxlen, 1, &next, &stat);
283 thislen = next - i;
290 * If not done yet, find the start of the next free space.
292 if (next < end) {
293 error = xfs_rtfind_forw(mp, tp, next, end, &i);
327 * Allocation failed. Set *nextp to the next block to try.
329 *nextp = next;
356 xfs_rtblock_t next; /* next block to try (dummy) */
362 error = xfs_rtcheck_range(mp, tp, bno, maxlen, 1, &next, &isfree);
381 maxlen = next - bno;
438 xfs_rtblock_t n; /* next block to try */
637 xfs_rtblock_t n; /* next block to be tried */
665 * Nothing there, on to the next block.
685 * If the "next block to try" returned from the
686 * allocator is beyond the next bitmap block,
724 * If nothing there, go on to next.
748 * If the "next block to try" returned from the
749 * allocator is beyond the next bitmap block,
863 * Go on to the next extent, if any.