Home
last modified time | relevance | path

Searched refs:xarray (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/sys/compat/linuxkpi/common/include/linux/
H A Dxarray.h54 struct xarray { struct
64 void *xa_erase(struct xarray *, uint32_t); argument
65 void *xa_load(struct xarray *, uint32_t);
68 int xa_insert(struct xarray *, uint32_t, void *, gfp_t);
70 void xa_init_flags(struct xarray *, uint32_t);
71 bool xa_empty(struct xarray *);
72 void xa_destroy(struct xarray *);
73 void *xa_next(struct xarray *, unsigned long *, bool);
82 void *__xa_erase(struct xarray *, uint32_t);
87 bool __xa_empty(struct xarray *);
[all …]
/freebsd-13.1/sys/compat/linuxkpi/common/src/
H A Dlinux_xarray.c39 __xa_erase(struct xarray *xa, uint32_t index) in __xa_erase()
47 xa_erase(struct xarray *xa, uint32_t index) in xa_erase()
63 xa_load(struct xarray *xa, uint32_t index) in xa_load()
79 xa_vm_wait_locked(struct xarray *xa) in xa_vm_wait_locked()
240 xa_insert(struct xarray *xa, uint32_t index, void *ptr, gfp_t gfp) in xa_insert()
286 xa_store(struct xarray *xa, uint32_t index, void *ptr, gfp_t gfp) in xa_store()
301 xa_init_flags(struct xarray *xa, uint32_t flags) in xa_init_flags()
315 xa_destroy(struct xarray *xa) in xa_destroy()
330 __xa_empty(struct xarray *xa) in __xa_empty()
341 xa_empty(struct xarray *xa) in xa_empty()
[all …]
/freebsd-13.1/contrib/netbsd-tests/lib/libc/sys/
H A Dt_select.c63 static const char xarray[] = "0123456789abcdef"; in xtoa() local
64 assert(n < sizeof(xarray)); in xtoa()
65 return xarray[n]; in xtoa()