Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1829 #define SIZE_BITS (PREV_INUSE|IS_MMAPPED) macro
1832 #define chunksize(p) ((p)->size & ~(SIZE_BITS))
1836 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->size & ~SIZE_BITS) ))
1846 ((((mchunkptr)(((char*)(p))+((p)->size & ~SIZE_BITS)))->size) & PREV_INUSE)
1850 ((mchunkptr)(((char*)(p)) + ((p)->size & ~SIZE_BITS)))->size |= PREV_INUSE
1853 ((mchunkptr)(((char*)(p)) + ((p)->size & ~SIZE_BITS)))->size &= ~(PREV_INUSE)
1868 #define set_head_size(p, s) ((p)->size = (((p)->size & SIZE_BITS) | (s)))