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

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

Completed in 47 milliseconds