Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/include/linux/
Dxarray.h1496 void *xas_find(struct xa_state *, unsigned long max);
1632 return xas_find(xas, max); in xas_next_entry()
1636 return xas_find(xas, max); in xas_next_entry()
1638 return xas_find(xas, max); in xas_next_entry()
1641 return xas_find(xas, max); in xas_next_entry()
1726 for (entry = xas_find(xas, max); entry; \
/kernel/linux/linux-5.10/lib/
Dxarray.c1235 void *xas_find(struct xa_state *xas, unsigned long max) in xas_find() function
1281 EXPORT_SYMBOL_GPL(xas_find);
2020 entry = xas_find(&xas, max); in xa_find()
2073 entry = xas_find(&xas, max); in xa_find_after()
Dtest_xarray.c111 XA_BUG_ON(xa, xas_find(&xas, ULONG_MAX) != xa_mk_value(0)); in check_xas_retry()
1248 XA_BUG_ON(xa, xas_find(&xas, ULONG_MAX) != xa_mk_index(ULONG_MAX)); in check_move_max()
1249 XA_BUG_ON(xa, xas_find(&xas, ULONG_MAX) != NULL); in check_move_max()
1254 XA_BUG_ON(xa, xas_find(&xas, ULONG_MAX) != xa_mk_index(ULONG_MAX)); in check_move_max()
1256 XA_BUG_ON(xa, xas_find(&xas, ULONG_MAX) != NULL); in check_move_max()
/kernel/linux/linux-5.10/Documentation/core-api/
Dxarray.rst413 You can search for the next present entry using xas_find(). This
418 move to the next present entry instead of xas_find() will save
472 or calling xas_find(), if the initial index is in the middle
/kernel/linux/linux-5.10/mm/
Dfilemap.c485 page = xas_find(&xas, max); in filemap_range_has_page()