Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c1721 #define PINUSE_BIT (SIZE_T_ONE) macro
1723 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
1730 #define pinuse(p) ((p)->head & PINUSE_BIT)
1733 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
1745 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
1753 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
1760 (!((p)->head & PINUSE_BIT) && ((p)->prev_foot & IS_MMAPPED_BIT))
2473 ((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\
2474 ((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT)
2478 ((p)->head = (s|PINUSE_BIT|CINUSE_BIT),\
[all …]
/external/libffi/src/
Ddlmalloc.c1716 #define PINUSE_BIT (SIZE_T_ONE) macro
1718 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
1725 #define pinuse(p) ((p)->head & PINUSE_BIT)
1728 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
1740 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
1748 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
1755 (!((p)->head & PINUSE_BIT) && ((p)->prev_foot & IS_MMAPPED_BIT))
2468 ((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\
2469 ((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT)
2473 ((p)->head = (s|PINUSE_BIT|CINUSE_BIT),\
[all …]
/external/dlmalloc/
Dmalloc.c2246 #define PINUSE_BIT (SIZE_T_ONE) macro
2249 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
2250 #define FLAG_BITS (PINUSE_BIT|CINUSE_BIT|FLAG4_BIT)
2257 #define pinuse(p) ((p)->head & PINUSE_BIT)
2259 #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT)
2264 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
2277 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
2285 ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
3054 ((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\
3055 ((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT)
[all …]