Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Target/ARM/
DARMRelocator.cpp208 Relocator::DWord pLower16) { in helper_thumb32_branch_offset() argument
211 l = pLower16 & 0x7ffU, // 10-0 in helper_thumb32_branch_offset()
212 j1 = (pLower16 & (1U << 13)) >> 13, // 13 in helper_thumb32_branch_offset()
213 j2 = (pLower16 & (1U << 11)) >> 11; // 11 in helper_thumb32_branch_offset()
229 static Relocator::DWord helper_thumb32_branch_lower(Relocator::DWord pLower16, in helper_thumb32_branch_lower() argument
232 return ((pLower16 & ~0x2fffU) | ((((pOffset >> 23) & 1) ^ !sign) << 13) | in helper_thumb32_branch_lower()
238 Relocator::DWord pLower16) { in helper_thumb32_cond_branch_offset() argument
240 uint32_t j1 = (pLower16 & 0x2000U) >> 13; in helper_thumb32_cond_branch_offset()
241 uint32_t j2 = (pLower16 & 0x0800U) >> 11; in helper_thumb32_cond_branch_offset()
242 uint32_t lower = (pLower16 & 0x07ffU); in helper_thumb32_cond_branch_offset()
[all …]