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

/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_zip.cpp74 inline uint32_t ReadUInt16(uint8_t* mem_bytes, int offset) { argument
76 static_cast<uint32_t>(mem_bytes[offset]) |
77 (static_cast<uint32_t>(mem_bytes[offset + 1]) << 8);
80 inline uint32_t ReadUInt32(uint8_t* mem_bytes, int offset) { argument
82 static_cast<uint32_t>(mem_bytes[offset]) |
83 (static_cast<uint32_t>(mem_bytes[offset + 1]) << 8) |
84 (static_cast<uint32_t>(mem_bytes[offset + 2]) << 16) |
85 (static_cast<uint32_t>(mem_bytes[offset + 3]) << 24);
128 uint8_t* mem_bytes = static_cast<uint8_t*>(mem); local
132 if (ReadUInt32(mem_bytes, of
[all...]

Completed in 86 milliseconds