Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dobject.cc83 uint8_t* src_bytes = reinterpret_cast<uint8_t*>(src.Ptr()) + offset; in CopyObject() local
86 DCHECK_ALIGNED(src_bytes, sizeof(uintptr_t)); in CopyObject()
91 reinterpret_cast<Atomic<uintptr_t>*>(src_bytes)->load(std::memory_order_relaxed), in CopyObject()
93 src_bytes += sizeof(uintptr_t); in CopyObject()
100 reinterpret_cast<Atomic<uint32_t>*>(src_bytes)->load(std::memory_order_relaxed), in CopyObject()
102 src_bytes += sizeof(uint32_t); in CopyObject()
110 reinterpret_cast<Atomic<uint8_t>*>(src_bytes)->load(std::memory_order_relaxed), in CopyObject()
112 src_bytes += sizeof(uint8_t); in CopyObject()