Home
last modified time | relevance | path

Searched refs:slot_addr (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/allocator/
Drosalloc-inl.h106 void* slot_addr = thread_local_run->AllocSlot(); in AllocFromThreadLocalRun() local
107 if (LIKELY(slot_addr != nullptr)) { in AllocFromThreadLocalRun()
110 return slot_addr; in AllocFromThreadLocalRun()
143 uint8_t* slot_addr = reinterpret_cast<uint8_t*>(this) + in AllocSlot() local
147 << reinterpret_cast<intptr_t>(slot_addr) in AllocSlot()
151 return slot_addr; in AllocSlot()
Drosalloc.cc598 void* slot_addr = current_run->AllocSlot(); in AllocFromCurrentRunUnlocked() local
599 if (UNLIKELY(slot_addr == nullptr)) { in AllocFromCurrentRunUnlocked()
624 slot_addr = current_run->AllocSlot(); in AllocFromCurrentRunUnlocked()
626 DCHECK(slot_addr != nullptr); in AllocFromCurrentRunUnlocked()
628 return slot_addr; in AllocFromCurrentRunUnlocked()
646 void* slot_addr = AllocFromCurrentRunUnlocked(self, idx); in AllocFromRunThreadUnsafe() local
647 if (LIKELY(slot_addr != nullptr)) { in AllocFromRunThreadUnsafe()
653 return slot_addr; in AllocFromRunThreadUnsafe()
670 void* slot_addr; in AllocFromRun() local
684 slot_addr = thread_local_run->AllocSlot(); in AllocFromRun()
[all …]