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

/external/libffi/src/
H A Ddlmalloc.c1480 prev_foot and PINUSE_BIT bit of the following chunk header.
1543 The P (PINUSE_BIT) bit, stored in the unused low-order bit of the
1588 PINUSE_BIT in their head fields. Because they are allocated
1652 The head field of a chunk is or'ed with PINUSE_BIT when previous
1659 #define PINUSE_BIT (SIZE_T_ONE) macro
1661 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
1668 #define pinuse(p) ((p)->head & PINUSE_BIT)
1671 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
1683 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
1691 ((p)->head = (s|PINUSE_BIT), set_foo
[all...]
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c1526 prev_foot and PINUSE_BIT bit of the following chunk header.
1589 The P (PINUSE_BIT) bit, stored in the unused low-order bit of the
1634 PINUSE_BIT in their head fields. Because they are allocated
1698 The head field of a chunk is or'ed with PINUSE_BIT when previous
1705 #define PINUSE_BIT (SIZE_T_ONE) macro
1707 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
1714 #define pinuse(p) ((p)->head & PINUSE_BIT)
1717 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
1729 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
1737 ((p)->head = (s|PINUSE_BIT), set_foo
[all...]
/external/eigen/unsupported/test/mpreal/
H A Ddlmalloc.c1941 prev_foot and PINUSE_BIT bit of the following chunk header.
2004 The P (PINUSE_BIT) bit, stored in the unused low-order bit of the
2113 The head field of a chunk is or'ed with PINUSE_BIT when previous
2120 #define PINUSE_BIT (SIZE_T_ONE) macro
2123 #define INUSE_BITS (PINUSE_BIT|CINUSE_BIT)
2124 #define FLAG_BITS (PINUSE_BIT|CINUSE_BIT|FLAG4_BIT)
2131 #define pinuse(p) ((p)->head & PINUSE_BIT)
2132 #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT)
2137 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT)
2148 #define next_pinuse(p) ((next_chunk(p)->head) & PINUSE_BIT)
[all...]

Completed in 89 milliseconds