Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/
DMemory.cpp127 size_t align_bytes = addr & (sizeof(long) - 1); in PtraceRead() local
128 if (align_bytes != 0) { in PtraceRead()
132 size_t copy_bytes = std::min(sizeof(long) - align_bytes, bytes); in PtraceRead()
133 memcpy(dst, reinterpret_cast<uint8_t*>(&data) + align_bytes, copy_bytes); in PtraceRead()