Home
last modified time | relevance | path

Searched refs:prev_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/jit/
Ddebugger_interface.cc41 JITCodeEntry* prev_; member
86 entry->prev_ = nullptr; in CreateJITCodeEntryInternal()
90 entry->next_->prev_ = entry; in CreateJITCodeEntryInternal()
101 if (entry->prev_ != nullptr) { in DeleteJITCodeEntryInternal()
102 entry->prev_->next_ = entry->next_; in DeleteJITCodeEntryInternal()
108 entry->next_->prev_ = entry->prev_; in DeleteJITCodeEntryInternal()
/art/runtime/mirror/
Dreference.h154 HeapReference<FinalizerReference> prev_; variable
/art/runtime/gc/
Dheap.cc2319 context.prev_ = reinterpret_cast<uintptr_t>(space->Begin()); in BuildBins()
2325 AddBin(reinterpret_cast<uintptr_t>(space->End()) - context.prev_, context.prev_); in BuildBins()
2330 uintptr_t prev_; // The end of the previous object. member
2347 size_t bin_size = object_addr - context->prev_; in Callback()
2349 collector->AddBin(bin_size, context->prev_); in Callback()
2350 context->prev_ = object_addr + RoundUp(obj->SizeOf(), kObjectAlignment); in Callback()
/art/runtime/
Dclass_linker_test.cc672 addOffset(OFFSETOF_MEMBER(mirror::FinalizerReference, prev_), "prev"); in FinalizerReferenceOffsets()