Searched refs:free_list_bits (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/kernel/lib/heap/cmpctmalloc/
H A Dcmpctmalloc.c194 uint32_t free_list_bits[BUCKET_WORDS]; member in struct:heap
326 theheap.free_list_bits[index >> 5] |= (1u << (31 - (index & 0x1f)));
330 theheap.free_list_bits[index >> 5] &= ~(1u << (31 - (index & 0x1f)));
336 mask &= theheap.free_list_bits[index >> 5];
342 mask = theheap.free_list_bits[index >> 5];
1129 theheap.free_list_bits[i] = 0;

Completed in 76 milliseconds