Home | History | Annotate | Download | only in linux

Lines Matching defs:xarray

1 /*	$NetBSD: xarray.h,v 1.9 2021/12/19 12:05:25 riastradh Exp $	*/
36 struct xarray;
44 struct xarray {
79 void xa_init_flags(struct xarray *, gfp_t);
80 void xa_destroy(struct xarray *);
82 void * xa_load(struct xarray *, unsigned long);
83 void * xa_store(struct xarray *, unsigned long, void *, gfp_t);
84 void * xa_erase(struct xarray *, unsigned long);
86 int xa_alloc(struct xarray *, uint32_t *, void *, struct xa_limit, gfp_t);
87 void * xa_find(struct xarray *, unsigned long *, unsigned long, unsigned);
88 void * xa_find_after(struct xarray *, unsigned long *, unsigned long,