Lines Matching defs:index
57 #define xa_for_each(xa, index, entry) \
58 for (index = 0; ((entry) = xa_get_next(xa, &(index))) != NULL; index++)
140 xa_load(struct xarray *xa, unsigned long index)
143 r = __xa_load(xa, index);
149 xa_store(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp)
153 r = __xa_store(xa, index, entry, gfp);
159 xa_erase(struct xarray *xa, unsigned long index)
163 r = __xa_erase(xa, index);
169 xa_store_irq(struct xarray *xa, unsigned long index, void *entry, gfp_t gfp)
173 r = __xa_store(xa, index, entry, gfp);
179 xa_erase_irq(struct xarray *xa, unsigned long index)
183 r = __xa_erase(xa, index);