Lines Matching defs:indexp
1995 * @indexp: Pointer to an index.
2000 * index that is at least @indexp and no more than @max.
2001 * If an entry is found, @indexp is updated to be the index of the entry.
2009 void *xa_find(struct xarray *xa, unsigned long *indexp,
2012 XA_STATE(xas, xa, *indexp);
2025 *indexp = xas.xa_index;
2045 * @indexp: Pointer to an index.
2050 * index that is above @indexp and no more than @max.
2051 * If an entry is found, @indexp is updated to be the index of the entry.
2059 void *xa_find_after(struct xarray *xa, unsigned long *indexp,
2062 XA_STATE(xas, xa, *indexp + 1);
2085 *indexp = xas.xa_index;