Lines Matching refs:tsize
519 size_t tsize; in memalign() local
562 tsize = (shift + size) - (MAX_CACHED + 8 + in memalign()
565 if (!IS_OVERSIZE(tsize, alloc_size)) { in memalign()
570 tsize += OVSZ_HEADER_SIZE; in memalign()
572 tsize, MTMALLOC_MIN_ALIGN); in memalign()
607 tsize = orig->size - (MAX_CACHED + 8 + in memalign()
610 if (!IS_OVERSIZE(tsize, alloc_size)) { in memalign()
632 tsize = orig->size - data_sz; in memalign()
636 tsize -= OVSZ_HEADER_SIZE; in memalign()
637 tail = oversize_header_alloc(taddr, tsize); in memalign()
651 tsize = orig->size - (MAX_CACHED + 8 + in memalign()
655 if (!IS_OVERSIZE(tsize, alloc_size)) { in memalign()
687 tsize = orig->size; in memalign()
694 assert(tsize > (shift + data_sz + in memalign()
696 tail_sz = tsize - in memalign()