Home | History | Annotate | Download | only in space

Lines Matching full:cur_header

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