Searched refs:cur_header (Results 1 – 1 of 1) sorted by relevance
151 AllocationHeader* cur_header = reinterpret_cast<AllocationHeader*>(Begin()); in Walk() local152 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() local308 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()[all …]