Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp234 Relocator::DWord pLower16) in helper_thumb32_branch_offset() argument
238 l = pLower16 & 0x7ffU, // 10-0 in helper_thumb32_branch_offset()
239 j1 = (pLower16 & (1U << 13)) >> 13, // 13 in helper_thumb32_branch_offset()
240 j2 = (pLower16 & (1U << 11)) >> 11; // 11 in helper_thumb32_branch_offset()
260 helper_thumb32_branch_lower(Relocator::DWord pLower16, in helper_thumb32_branch_lower() argument
264 return ((pLower16 & ~0x2fffU) | in helper_thumb32_branch_lower()
272 Relocator::DWord pLower16) in helper_thumb32_cond_branch_offset() argument
275 uint32_t j1 = (pLower16 & 0x2000U) >> 13; in helper_thumb32_cond_branch_offset()
276 uint32_t j2 = (pLower16 & 0x0800U) >> 11; in helper_thumb32_cond_branch_offset()
277 uint32_t lower = (pLower16 & 0x07ffU); in helper_thumb32_cond_branch_offset()
[all …]