Lines Matching refs:xarray
56 struct xarray { struct
66 void *xa_erase(struct xarray *, uint32_t); argument
67 void *xa_load(struct xarray *, uint32_t);
68 int xa_alloc(struct xarray *, uint32_t *, void *, uint32_t, gfp_t);
69 int xa_alloc_cyclic(struct xarray *, uint32_t *, void *, uint32_t, uint32_t *, gfp_t);
70 int xa_insert(struct xarray *, uint32_t, void *, gfp_t);
71 void *xa_store(struct xarray *, uint32_t, void *, gfp_t);
72 void xa_init_flags(struct xarray *, uint32_t);
73 bool xa_empty(struct xarray *);
74 void xa_destroy(struct xarray *);
75 void *xa_next(struct xarray *, unsigned long *, bool);
84 void *__xa_erase(struct xarray *, uint32_t);
85 int __xa_alloc(struct xarray *, uint32_t *, void *, uint32_t, gfp_t);
86 int __xa_alloc_cyclic(struct xarray *, uint32_t *, void *, uint32_t, uint32_t *, gfp_t);
87 int __xa_insert(struct xarray *, uint32_t, void *, gfp_t);
88 void *__xa_store(struct xarray *, uint32_t, void *, gfp_t);
89 bool __xa_empty(struct xarray *);
90 void *__xa_next(struct xarray *, unsigned long *, bool);
120 xa_init(struct xarray *xa) in xa_init()