Lines Matching refs:op
116 union overhead *op; in __crt_malloc() local
132 while (nbytes > amt - sizeof(*op)) { in __crt_malloc()
142 if ((op = nextf[bucket]) == NULL) { in __crt_malloc()
144 if ((op = nextf[bucket]) == NULL) in __crt_malloc()
148 nextf[bucket] = op->ov_next; in __crt_malloc()
149 op->ov_magic = MAGIC; in __crt_malloc()
150 op->ov_index = bucket; in __crt_malloc()
151 return ((char *)(op + 1)); in __crt_malloc()
198 union overhead *op; in morecore() local
216 op = (union overhead *)pagepool_start; in morecore()
223 nextf[bucket] = op; 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() local
241 op = op1.ov_magic == AMAGIC ? (void *)((caddr_t)cp - op1.ov_index) : in __crt_free()
243 if (op->ov_magic != MAGIC) in __crt_free()
245 size = op->ov_index; in __crt_free()
246 op->ov_next = nextf[size]; /* also clobbers ov_magic */ in __crt_free()
247 nextf[size] = op; in __crt_free()
255 union overhead *op; in __crt_realloc() local
260 op = cp2op(cp); in __crt_realloc()
261 if (op->ov_magic != MAGIC) in __crt_realloc()
263 i = op->ov_index; in __crt_realloc()
266 onb -= sizeof(*op); in __crt_realloc()
268 onb += pagesz - sizeof(*op); in __crt_realloc()
273 i -= sizeof(*op); in __crt_realloc()
275 i += pagesz - sizeof(*op); in __crt_realloc()