Lines Matching defs:Alloc
54 typedef struct hp_alloc_s Alloc;
58 Alloc * prev;
59 Alloc * next;
63 static Alloc head[] = {{ head, head, {0} }};
66 #define VOID_TO_ALLOCP(p) ((Alloc *)((hp_byte_t *)(p) - DATA_OFFSET))
73 Alloc * new = malloc(ALLOCSIZE(sz));
113 Alloc * old = VOID_TO_ALLOCP(ptr);
114 Alloc copy = *old;
115 Alloc * new = realloc(old, ALLOCSIZE(sz));
129 Alloc * old = VOID_TO_ALLOCP(ptr);
140 Alloc * ptr;
141 Alloc * next;