Lines Matching refs:assert
151 assert(map_size > size); in MapAligned()
152 assert(ptr != NULL); in MapAligned()
215 assert(count == sizeof(Chunk)); in operator new()
226 assert(reinterpret_cast<Chunk*>(ptr) == ptr_to_chunk(ptr)); in operator delete()
248 assert(free_count_ > 0); in Alloc()
252 assert(i < arraysize(free_bitmap_)); in Alloc()
254 assert(free_bitmap_[i] & (1U << bit)); in Alloc()
257 assert(n < max_allocations_); in Alloc()
260 assert(page / 32 < arraysize(dirty_pages_)); in Alloc()
272 assert(is_chunk(ptr)); in Free()
273 assert(ptr_to_chunk(ptr) == this); in Free()
279 assert(i < arraysize(free_bitmap_)); in Free()
280 assert(!(free_bitmap_[i] & (1U << bit))); in Free()
307 assert(count == sizeof(HeapImpl)); in operator new()
382 assert(chunk->heap() == this); in FreeLocked()
408 assert(*allocation != nullptr); in MapFree()