Lines Matching refs:overhead
71 union overhead { union
72 union overhead *ov_next; /* when free */
95 static union overhead *nextf[NBUCKETS];
110 return (((caddr_t)cp - sizeof(union overhead))); in cp2op()
116 union overhead *op; in __crt_malloc()
174 union overhead ov1; in __crt_aligned_alloc_offset()
180 mem = __crt_malloc(size + align + offset + sizeof(union overhead)); in __crt_aligned_alloc_offset()
183 x = roundup2((uintptr_t)mem + sizeof(union overhead), align); in __crt_aligned_alloc_offset()
187 ov1.ov_index = x - (uintptr_t)mem + sizeof(union overhead); in __crt_aligned_alloc_offset()
198 union overhead *op; in morecore()
216 op = (union overhead *)pagepool_start; in morecore()
225 op->ov_next = (union overhead *)((caddr_t)op + sz); in morecore()
226 op = (union overhead *)((caddr_t)op + sz); in morecore()
233 union overhead *op, op1; in __crt_free()
255 union overhead *op; in __crt_realloc()