Home
last modified time | relevance | path

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

/trusty/user/base/lib/dlmalloc/
Ddlmalloc.c2261 #define PINUSE_BIT (SIZE_T_ONE) macro
2264 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
2265 #define FLAG_BITS (PINUSE_BIT|CINUSE_BIT|FLAG4_BIT)
2272 #define pinuse(p) ((p)->head & PINUSE_BIT)
2274 #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT)
2279 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
2292 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
2300 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
3067 ((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\
3068 ((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT)
[all …]