Home
last modified time | relevance | path

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

/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_xarray.c125 MPASS(mask > ((xa->flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0)); in __xa_alloc()
130 *pindex = (xa->flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0; in __xa_alloc()
187 MPASS(mask > ((xa->flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0)); in __xa_alloc_cyclic()
192 *pnext_index = (xa->flags & XA_FLAGS_ALLOC1) != 0 ? 1 : 0; in __xa_alloc_cyclic()
206 if (*pnext_index == 0 && (xa->flags & XA_FLAGS_ALLOC1) != 0) in __xa_alloc_cyclic()
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dxarray.h42 #define XA_FLAGS_ALLOC1 (1U << 2) macro