Searched refs:INUSE_BITS (Results 1 - 1 of 1) sorted by relevance

/barrelfish-2018-10-04/lib/dmalloc/
H A Ddmalloc.c2310 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT) macro
2314 #define FENCEPOST_HEAD (INUSE_BITS|SIZE_T_SIZE)
2320 #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT)
2321 #define is_mmapped(p) (((p)->head & INUSE_BITS) == 0)
3287 size_t sz = p->head & ~INUSE_BITS; /* third-lowest bit can be set! */
3350 size_t sz = p->head & ~INUSE_BITS;
4441 else if ((next->head & INUSE_BITS) == INUSE_BITS) {
4781 else if ((next->head & INUSE_BITS) == INUSE_BITS) {
[all...]

Completed in 42 milliseconds