Lines Matching refs:csize
113 c->csize & 15,
160 w->csize = 0 | C_INUSE; in expand_heap()
165 w->csize = n | C_INUSE; in expand_heap()
194 c->csize |= C_INUSE; in unbin()
202 while (!((k=c->csize) & C_INUSE)) { in alloc_fwd()
205 if (c->csize == k) { in alloc_fwd()
260 split->csize = n1-n; in pretrim()
262 self->csize = n | C_INUSE; in pretrim()
277 split->csize = n1-n | C_INUSE; in trim()
279 self->csize = n | C_INUSE; in trim()
300 c->csize = len - (SIZE_ALIGN - OVERHEAD); in malloc()
314 NEXT_CHUNK(x)->psize = c->csize = in malloc()
315 x->csize + CHUNK_SIZE(c); in malloc()
402 self->csize = newlen - extra; in realloc()
409 if (next->psize != self->csize) a_crash(); in realloc()
423 self->csize = n1 | C_INUSE; in realloc()
453 if (next->psize != self->csize) a_crash(); in __bin_chunk()
456 if (self->psize & next->csize & C_INUSE) { in __bin_chunk()
457 self->csize = final_size | C_INUSE; in __bin_chunk()
462 if (self->psize & next->csize & C_INUSE) in __bin_chunk()
488 self->csize = final_size; in __bin_chunk()
548 c->psize = n->csize = C_INUSE; in __malloc_donate()
549 c->csize = n->psize = C_INUSE | (end-start); in __malloc_donate()