Home
last modified time | relevance | path

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

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp254 uint32_t other_half = 0; in recordScatteredRelocation() local
257 other_half = (FixedValue >> 16) & 0xffff; in recordScatteredRelocation()
266 other_half = FixedValue & 0xffff; in recordScatteredRelocation()
271 other_half = FixedValue & 0xffff; in recordScatteredRelocation()
280 makeScatteredRelocationInfo(MRE, other_half, MachO::GENERIC_RELOC_PAIR, in recordScatteredRelocation()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp1882 uint32_t r_value, pair_r_value, r_type, r_length, other_half; in SymbolizerGetOpInfo() local
1916 other_half = info->O->getAnyRelocationAddress(RENext) & 0xffff; in SymbolizerGetOpInfo()
1931 op_info->Value = value << 16 | other_half; in SymbolizerGetOpInfo()
1934 op_info->Value = other_half << 16 | value; in SymbolizerGetOpInfo()
1955 value = value << 16 | other_half; in SymbolizerGetOpInfo()
1957 value = other_half << 16 | value; in SymbolizerGetOpInfo()