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

/art/runtime/gc/allocator/
H A Drosalloc.h116 class Slot { class in class:art::gc::allocator::RosAlloc
118 Slot* Next() const {
121 void SetNext(Slot* next) {
125 Slot* Left(size_t bracket_size) {
126 return reinterpret_cast<Slot*>(reinterpret_cast<uintptr_t>(this) - bracket_size);
133 Slot* next_; // Next slot in the list.
145 Slot* Head() const {
146 return reinterpret_cast<Slot*>(head_);
148 Slot* Tail() const {
150 return reinterpret_cast<Slot*>(tail
[all...]

Completed in 35 milliseconds