Lines Matching refs:treemap
2024 binmap_t treemap; member
2306 #define mark_treemap(M,i) ((M)->treemap |= idx2bit(i))
2307 #define clear_treemap(M,i) ((M)->treemap &= ~idx2bit(i))
2308 #define treemap_is_marked(M,i) ((M)->treemap & idx2bit(i))
2700 int empty = (m->treemap & (1U << i)) == 0; in do_check_treebin()
3701 binmap_t leftbits = left_bits(idx2bit(idx)) & m->treemap; in tmalloc_large()
3746 binmap_t leastbit = least_bit(m->treemap); in tmalloc_small()
4145 else if (gm->treemap != 0 && (mem = tmalloc_small(gm, nb)) != 0) { in dlmalloc()
4155 if (gm->treemap != 0 && (mem = tmalloc_large(gm, nb)) != 0) { in dlmalloc()
4552 else if (ms->treemap != 0 && (mem = tmalloc_small(ms, nb)) != 0) { in mspace_malloc()
4562 if (ms->treemap != 0 && (mem = tmalloc_large(ms, nb)) != 0) { in mspace_malloc()