Searched defs:ptr_base (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/accounting/
H A Dbitmap-inl.h87 const uintptr_t ptr_base = WordIndexToBitIndex(index_start); local
90 visitor(ptr_base + shift);
99 const uintptr_t ptr_base = WordIndexToBitIndex(i); local
102 visitor(ptr_base + shift);
123 const uintptr_t ptr_base = WordIndexToBitIndex(index_end); local
126 visitor(ptr_base + shift);
H A Dspace_bitmap-inl.h111 const uintptr_t ptr_base = IndexToOffset(index_start) + heap_begin_; local
114 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
124 const uintptr_t ptr_base = IndexToOffset(i) + heap_begin_; local
128 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
151 const uintptr_t ptr_base = IndexToOffset(index_end) + heap_begin_; local
155 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
173 uintptr_t ptr_base = IndexToOffset(i) + heap_begin_; local
176 mirror::Object* obj = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);
H A Dspace_bitmap.cc189 uintptr_t ptr_base = IndexToOffset(i) + live_bitmap.heap_begin_; local
193 *pb++ = reinterpret_cast<mirror::Object*>(ptr_base + shift * kAlignment);

Completed in 48 milliseconds