Lines Matching refs:AllocMap
95 RB_GENERATE(AllocMap, AllocMapEntry, rb_entry, cmp_rb);
106 allocmap_insert_desc(AllocMap* map, in allocmap_insert_desc()
140 allocmap_find_entry(const AllocMap* map, in allocmap_find_entry()
149 return AllocMap_RB_FIND((AllocMap*)map, &adesc); in allocmap_find_entry()
157 allocmap_init(AllocMap* map) in allocmap_init()
163 allocmap_insert(AllocMap* map, const MallocDescEx* desc, MallocDescEx* replaced) in allocmap_insert()
187 allocmap_find(const AllocMap* map, target_ulong address, uint32_t block_size) in allocmap_find()
194 allocmap_pull(AllocMap* map, target_ulong address, MallocDescEx* pulled) in allocmap_pull()
208 allocmap_pull_first(AllocMap* map, MallocDescEx* pulled) in allocmap_pull_first()
210 AllocMapEntry* first = RB_MIN(AllocMap, map); in allocmap_pull_first()
222 allocmap_copy(AllocMap* to, in allocmap_copy()
223 const AllocMap* from, in allocmap_copy()
228 RB_FOREACH(entry, AllocMap, (AllocMap*)from) { in allocmap_copy()
270 allocmap_empty(AllocMap* map) in allocmap_empty()