Home
last modified time | relevance | path

Searched refs:xa_flags (Results 1 – 2 of 2) sorted by relevance

/src/sys/compat/linuxkpi/common/src/
H A Dlinux_xarray.c125 MPASS(mask > ((xa->xa_flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0)); in __xa_alloc()
130 *pindex = (xa->xa_flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0; in __xa_alloc()
187 MPASS(mask > ((xa->xa_flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0)); in __xa_alloc_cyclic()
192 *pnext_index = (xa->xa_flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0; in __xa_alloc_cyclic()
206 if (*pnext_index == 0 && (xa->xa_flags & XA_FLAGS_ALLOC1) != 0) in __xa_alloc_cyclic()
352 xa->xa_flags = flags; in xa_init_flags()
/src/sys/compat/linuxkpi/common/include/linux/
H A Dxarray.h59 uint32_t xa_flags; /* see XA_FLAGS_XXX */ member