Home
last modified time | relevance | path

Searched refs:avail_buckets (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/lib/heap/
Dheap.c40 CHECK(h->avail_buckets & BIT(bidx)); in free_list_remove_bidx()
44 h->avail_buckets &= ~BIT(bidx); in free_list_remove_bidx()
73 CHECK((h->avail_buckets & BIT(bidx)) == 0); in free_list_add_bidx()
76 h->avail_buckets |= BIT(bidx); in free_list_add_bidx()
81 CHECK(h->avail_buckets & BIT(bidx)); in free_list_add_bidx()
249 uint32_t bmask = h->avail_buckets & ~BIT_MASK(bi + 1); in alloc_chunk()
512 h->avail_buckets = 0; in sys_heap_init()
Dheap_validate.c59 bool emptybit = (h->avail_buckets & BIT(bidx)) == 0; in check_nexts()
124 bool empty = (h->avail_buckets & BIT(b)) == 0; in sys_heap_validate()
Dheap.h71 uint32_t avail_buckets; member