Home
last modified time | relevance | path

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

/art/dex2oat/linker/arm/
Drelative_patcher_thumb2.h65 static uint32_t GetInsn16(ArrayRef<const uint8_t> code, uint32_t offset);
68 static uint32_t GetInsn16(Vector* code, uint32_t offset);
Drelative_patcher_thumb2.cc189 uint32_t Thumb2RelativePatcher::GetInsn16(ArrayRef<const uint8_t> code, uint32_t offset) { in GetInsn16() function in art::linker::Thumb2RelativePatcher
197 uint32_t Thumb2RelativePatcher::GetInsn16(Vector* code, uint32_t offset) { in GetInsn16() function in art::linker::Thumb2RelativePatcher
199 return GetInsn16(ArrayRef<const uint8_t>(*code), offset); in GetInsn16()
/art/compiler/optimizing/
Dcode_generator_arm_vixl.cc1953 auto GetInsn16 = [&code](uint32_t offset) { in Finalize() local
1959 return (GetInsn16(offset) << 16) + (GetInsn16(offset + 2u) << 0); in Finalize()
1977 uint32_t next_insn = GetInsn16(literal_offset + 4u); in Finalize()
2005 uint32_t prev_insn = GetInsn16(literal_offset - 2u); in Finalize()