Lines Matching refs:cur_header
151 AllocationHeader* cur_header = reinterpret_cast<AllocationHeader*>(Begin()); in Walk() local
152 while (reinterpret_cast<uintptr_t>(cur_header) < free_end_start) { in Walk()
153 cur_header = cur_header->GetNextNonFree(); in Walk()
154 size_t alloc_size = cur_header->AllocationSize(); in Walk()
155 byte* byte_start = reinterpret_cast<byte*>(cur_header->GetObjectAddress()); in Walk()
159 cur_header = reinterpret_cast<AllocationHeader*>(byte_end); in Walk()
307 AllocationHeader* cur_header = reinterpret_cast<AllocationHeader*>(Begin()); in Dump() local
308 while (reinterpret_cast<uintptr_t>(cur_header) < free_end_start) { in Dump()
309 byte* free_start = reinterpret_cast<byte*>(cur_header); in Dump()
310 cur_header = cur_header->GetNextNonFree(); in Dump()
311 byte* free_end = reinterpret_cast<byte*>(cur_header); in Dump()
316 size_t alloc_size = cur_header->AllocationSize(); in Dump()
317 byte* byte_start = reinterpret_cast<byte*>(cur_header->GetObjectAddress()); in Dump()
321 cur_header = reinterpret_cast<AllocationHeader*>(byte_end); in Dump()