Lines Matching refs:overhead
113 union overhead { union
114 union overhead *ov_next; /* when free */
147 static union overhead *nextf[NBUCKETS];
178 union overhead *op; in imalloc()
191 op = (union overhead *)(pagepool_start); in imalloc()
201 amt = sizeof(union overhead); in imalloc()
215 if (sizeof(union overhead) & (sizeof(union overhead) - 1)) { in imalloc()
216 amt = sizeof(union overhead) * 2; in imalloc()
219 amt = sizeof(union overhead); /* size of first bucket */ in imalloc()
267 union overhead *op; in morecore()
290 op = (union overhead *)pagepool_start; in morecore()
299 op->ov_next = (union overhead *)((caddr_t)op + sz); in morecore()
300 op = (union overhead *)((caddr_t)op + sz); in morecore()
308 union overhead *op; in xfree()
312 op = (union overhead *)((caddr_t)cp - sizeof (union overhead)); in xfree()
337 union overhead *op; in irealloc()
342 op = (union overhead *)((caddr_t)cp - sizeof (union overhead)); in irealloc()
394 union overhead *p; in mstats()