Searched refs:xas_find (Results 1 - 8 of 8) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
H A D | xarray.h | 1496 void *xas_find(struct xa_state *, unsigned long max); 1620 * speed. It is equivalent to calling xas_find(), and will call xas_find() 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-6.6/include/linux/ |
H A D | xarray.h | 1534 void *xas_find(struct xa_state *, unsigned long max); 1683 * speed. It is equivalent to calling xas_find(), and will call xas_find() 1695 return xas_find(xas, max); in xas_next_entry() 1699 return xas_find(xas, max); in xas_next_entry() 1701 return xas_find(xas, max); in xas_next_entry() 1704 return xas_find(xas, max); in xas_next_entry() 1789 for (entry = xas_find(xas, max); entry; \
|
/kernel/linux/linux-5.10/lib/ |
H A D | xarray.c | 1220 * xas_find() - Find the next present entry in the XArray. 1235 void *xas_find(struct xa_state *xas, unsigned long max) in xas_find() function 1281 EXPORT_SYMBOL_GPL(xas_find); variable 2004 * %XA_RETRY_ENTRY; if you need to see retry entries, use xas_find(). 2020 entry = xas_find(&xas, max); in xa_find() 2054 * %XA_RETRY_ENTRY; if you need to see retry entries, use xas_find(). 2073 entry = xas_find(&xas, max); in xa_find_after()
|
H A D | test_xarray.c | 111 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-6.6/lib/ |
H A D | xarray.c | 1222 * xas_find() - Find the next present entry in the XArray. 1237 void *xas_find(struct xa_state *xas, unsigned long max) in xas_find() function 1283 EXPORT_SYMBOL_GPL(xas_find); variable 2012 * %XA_RETRY_ENTRY; if you need to see retry entries, use xas_find(). 2028 entry = xas_find(&xas, max); in xa_find() 2062 * %XA_RETRY_ENTRY; if you need to see retry entries, use xas_find(). 2081 entry = xas_find(&xas, max); in xa_find_after()
|
H A D | test_xarray.c | 111 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-6.6/mm/ |
H A D | filemap.c | 484 folio = xas_find(&xas, max); in filemap_range_has_page() 1976 folio = xas_find(xas, max); in find_get_entry()
|
/kernel/linux/linux-5.10/mm/ |
H A D | filemap.c | 485 page = xas_find(&xas, max); in filemap_range_has_page()
|
Completed in 25 milliseconds