Lines Matching refs:P
1165 | Size of chunk, in bytes |P|
1189 `head:' | Size of chunk, in bytes |P|
1202 The P (PREV_INUSE) bit, stored in the unused low-order bit of the
1706 #define check_free_chunk(P) do_check_free_chunk(P)
1707 #define check_inuse_chunk(P) do_check_inuse_chunk(P)
1708 #define check_chunk(P) do_check_chunk(P)
1709 #define check_malloced_chunk(P,N) do_check_malloced_chunk(P,N)
1711 #define check_free_chunk(P)
1712 #define check_inuse_chunk(P)
1713 #define check_chunk(P)
1714 #define check_malloced_chunk(P,N)
1735 #define frontlink(P, S, IDX, BK, FD) \
1743 P->bk = BK; \
1744 P->fd = FD; \
1745 FD->bk = BK->fd = P; \
1758 P->bk = BK; \
1759 P->fd = FD; \
1760 FD->bk = BK->fd = P; \
1767 #define unlink(P, BK, FD) \
1769 BK = P->bk; \
1770 FD = P->fd; \
1777 #define link_last_remainder(P) \
1779 last_remainder->fd = last_remainder->bk = P; \
1780 P->fd = P->bk = last_remainder; \