HomeSort by: relevance | last modified time | path
    Searched refs:xarray (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/external/bsd/drm2/include/linux/
pagevec.h 32 #include <linux/xarray.h>
xarray.h 1 /* $NetBSD: xarray.h,v 1.9 2021/12/19 12:05:25 riastradh Exp $ */
36 struct xarray;
44 struct xarray { struct
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)
    [all...]
  /src/sys/external/bsd/drm2/linux/
linux_xa.c 33 * This is a lame-o implementation of the Linux xarray data type, which
44 #include <linux/xarray.h>
86 xa_init_flags(struct xarray *xa, gfp_t gfp)
95 xa_destroy(struct xarray *xa)
111 xa_load(struct xarray *xa, unsigned long key)
125 xa_store(struct xarray *xa, unsigned long key, void *datum, gfp_t gfp)
155 xa_alloc(struct xarray *xa, uint32_t *idp, void *datum, struct xa_limit limit,
195 xa_find(struct xarray *xa, unsigned long *startp, unsigned long max,
215 xa_find_after(struct xarray *xa, unsigned long *startp, unsigned long max,
230 xa_erase(struct xarray *xa, unsigned long key
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_gem.h 53 struct xarray;
445 int drm_gem_fence_array_add(struct xarray *fence_array,
447 int drm_gem_fence_array_add_implicit(struct xarray *fence_array,
  /src/tests/lib/libc/sys/
t_select.c 65 static const char xarray[] = "0123456789abcdef"; local in function:xtoa
66 assert(n < sizeof(xarray));
67 return xarray[n];
  /src/sys/external/bsd/drm2/dist/drm/
drm_gem.c 1490 int drm_gem_fence_array_add(struct xarray *fence_array,
1540 int drm_gem_fence_array_add_implicit(struct xarray *fence_array,
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_drv.h 51 #include <linux/xarray.h>
209 struct xarray context_xa;

Completed in 18 milliseconds