Lines Matching refs:next
166 * Find the next allocated block (end of free extent).
245 xfs_rtblock_t *nextp, /* out: next block to try */
256 xfs_rtblock_t next; /* next rtblock to try */
272 * If it's not so then next will contain the first non-free.
274 error = xfs_rtcheck_range(mp, tp, i, maxlen, 1, &next, &stat);
300 thislen = next - i;
307 * If not done yet, find the start of the next free space.
309 if (next < end) {
310 error = xfs_rtfind_forw(mp, tp, next, end, &i);
344 * Allocation failed. Set *nextp to the next block to try.
346 *nextp = next;
373 xfs_rtblock_t next; /* next block to try (dummy) */
380 error = xfs_rtcheck_range(mp, tp, bno, maxlen, 1, &next, &isfree);
399 maxlen = next - bno;
456 xfs_rtblock_t n; /* next block to try */
657 xfs_rtblock_t n; /* next block to be tried */
686 * Nothing there, on to the next block.
706 * If the "next block to try" returned from the
707 * allocator is beyond the next bitmap block,
745 * If nothing there, go on to next.
769 * If the "next block to try" returned from the
770 * allocator is beyond the next bitmap block,
892 * Go on to the next extent, if any.