Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c2143 #define NONCONTIGUOUS_BIT (2U) macro
2145 #define contiguous(M) (((M)->max_fast & NONCONTIGUOUS_BIT) == 0)
2146 #define noncontiguous(M) (((M)->max_fast & NONCONTIGUOUS_BIT) != 0)
2147 #define set_noncontiguous(M) ((M)->max_fast |= NONCONTIGUOUS_BIT)
2148 #define set_contiguous(M) ((M)->max_fast &= ~NONCONTIGUOUS_BIT)
2160 ((M)->max_fast & NONCONTIGUOUS_BIT)