Lines Matching defs:last
1666 unsigned long last)
1669 unsigned long sibs = last - first;
1689 if ((((first + sibs + 1) << shift) - 1) > last)
1700 * @last: Last index to affect.
1704 * After this function returns, loads from any index between @first and @last,
1715 unsigned long last, void *entry, gfp_t gfp)
1721 if (last < first)
1728 if (last + 1)
1729 order = __ffs(last + 1);
1730 xas_set_order(&xas, last, order);
1736 xas_set_range(&xas, first, last);
1741 } while (first <= last);
2133 * @max: The last index in the XArray eligible to be selected.