Lines Matching refs:is64Bit
99 bool Is64 = O.is64Bit(); in getSectionPtr()
175 if (O.is64Bit()) { in getSectionFlags()
200 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64) in getFirstLoadCommandInfo()
211 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64) in getNextLoadCommandInfo()
417 if (Obj.is64Bit()) { in checkSymtabCommand()
491 if (Obj.is64Bit()) { in checkDysymtabCommand()
1221 if (is64Bit()) { in MachOObjectFile()
1270 if (is64Bit()) { in MachOObjectFile()
1635 if (is64Bit()) { in checkSymbolTable()
1651 if (is64Bit()) { in checkSymbolTable()
1702 unsigned SymbolTableEntrySize = is64Bit() ? in moveSymbolNext()
1730 if (is64Bit()) { in getNValue()
1872 if (is64Bit()) in getSectionAddress()
1889 if (is64Bit()) { in getSectionSize()
1915 if (is64Bit()) { in getSectionContents()
1931 if (is64Bit()) { in getSectionAlignment()
2008 if (is64Bit()) in isSectionStripped()
2023 if (is64Bit()) { in section_rel_end()
2095 unsigned SymbolTableEntrySize = is64Bit() ? in getRelocationSymbol()
2432 unsigned SymbolTableEntrySize = is64Bit() ? in symbol_end()
2446 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolByIndex()
2458 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolIndex()
2477 return is64Bit() ? 8 : 4; in getBytesInAddress()
2482 if (!is64Bit()) { in getFileFormatName()
3035 ArrayRef<uint8_t> Bytes, bool is64Bit) in MachORebaseEntry() argument
3037 PointerSize(is64Bit ? 8 : 4) {} in MachORebaseEntry()
3416 return rebaseTable(Err, this, getDyldInfoRebaseOpcodes(), is64Bit()); in rebaseTable()
3420 ArrayRef<uint8_t> Bytes, bool is64Bit, Kind BK) in MachOBindEntry() argument
3422 PointerSize(is64Bit ? 8 : 4), TableKind(BK) {} in MachOBindEntry()
4100 return bindTable(Err, this, getDyldInfoBindOpcodes(), is64Bit(), in bindTable()
4105 return bindTable(Err, this, getDyldInfoLazyBindOpcodes(), is64Bit(), in lazyBindTable()
4110 return bindTable(Err, this, getDyldInfoWeakBindOpcodes(), is64Bit(), in weakBindTable()
4390 if (is64Bit()) { in getRelocation()
4422 assert(is64Bit()); in getHeader64()
4581 bool MachOObjectFile::is64Bit() const { in is64Bit() function in MachOObjectFile