Lines Matching defs:indexp
2003 * @indexp: Pointer to an index.
2008 * index that is at least @indexp and no more than @max.
2009 * If an entry is found, @indexp is updated to be the index of the entry.
2017 void *xa_find(struct xarray *xa, unsigned long *indexp,
2020 XA_STATE(xas, xa, *indexp);
2033 *indexp = xas.xa_index;
2053 * @indexp: Pointer to an index.
2058 * index that is above @indexp and no more than @max.
2059 * If an entry is found, @indexp is updated to be the index of the entry.
2067 void *xa_find_after(struct xarray *xa, unsigned long *indexp,
2070 XA_STATE(xas, xa, *indexp + 1);
2093 *indexp = xas.xa_index;