Home
last modified time | relevance | path

Searched refs:xas_find (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.4/include/linux/
Dxarray.h1459 void *xas_find(struct xa_state *, unsigned long max);
1562 return xas_find(xas, max); in xas_next_entry()
1566 return xas_find(xas, max); in xas_next_entry()
1568 return xas_find(xas, max); in xas_next_entry()
1571 return xas_find(xas, max); in xas_next_entry()
1652 for (entry = xas_find(xas, max); entry; \
/Linux-v5.4/lib/
Dxarray.c1078 void *xas_find(struct xa_state *xas, unsigned long max) in xas_find() function
1122 EXPORT_SYMBOL_GPL(xas_find);
1817 entry = xas_find(&xas, max); in xa_find()
1855 entry = xas_find(&xas, max); in xa_find_after()
Dtest_xarray.c107 XA_BUG_ON(xa, xas_find(&xas, ULONG_MAX) != xa_mk_value(0)); in check_xas_retry()
/Linux-v5.4/Documentation/core-api/
Dxarray.rst398 You can search for the next present entry using xas_find(). This
403 move to the next present entry instead of xas_find() will save
458 or calling xas_find(), if the initial index is in the middle
/Linux-v5.4/mm/
Dfilemap.c484 page = xas_find(&xas, max); in filemap_range_has_page()