Lines Matching refs:is64Bit

97   bool Is64 = O.is64Bit();  in getSectionPtr()
177 if (O.is64Bit()) { in getSectionFlags()
202 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64) in getFirstLoadCommandInfo()
213 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64) in getNextLoadCommandInfo()
424 if (Obj.is64Bit()) { in checkSymtabCommand()
501 if (Obj.is64Bit()) { in checkDysymtabCommand()
1265 if (is64Bit()) { in MachOObjectFile()
1314 if (is64Bit()) { in MachOObjectFile()
1682 if (is64Bit()) { in checkSymbolTable()
1698 if (is64Bit()) { in checkSymbolTable()
1748 unsigned SymbolTableEntrySize = is64Bit() ? in moveSymbolNext()
1776 if (is64Bit()) { in getNValue()
1918 if (is64Bit()) in getSectionAddress()
1935 if (is64Bit()) { in getSectionSize()
1966 if (is64Bit()) { in getSectionContents()
1981 if (is64Bit()) { in getSectionAlignment()
2070 if (is64Bit()) in isSectionStripped()
2085 if (is64Bit()) { in section_rel_end()
2157 unsigned SymbolTableEntrySize = is64Bit() ? in getRelocationSymbol()
2513 unsigned SymbolTableEntrySize = is64Bit() ? in symbol_end()
2527 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolByIndex()
2539 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolIndex()
2558 return is64Bit() ? 8 : 4; in getBytesInAddress()
2563 if (!is64Bit()) { in getFileFormatName()
3146 ArrayRef<uint8_t> Bytes, bool is64Bit) in MachORebaseEntry() argument
3148 PointerSize(is64Bit ? 8 : 4) {} in MachORebaseEntry()
3479 return rebaseTable(Err, this, getDyldInfoRebaseOpcodes(), is64Bit()); in rebaseTable()
3483 ArrayRef<uint8_t> Bytes, bool is64Bit, Kind BK) in MachOBindEntry() argument
3485 PointerSize(is64Bit ? 8 : 4), TableKind(BK) {} in MachOBindEntry()
4139 return bindTable(Err, this, getDyldInfoBindOpcodes(), is64Bit(), in bindTable()
4144 return bindTable(Err, this, getDyldInfoLazyBindOpcodes(), is64Bit(), in lazyBindTable()
4149 return bindTable(Err, this, getDyldInfoWeakBindOpcodes(), is64Bit(), in weakBindTable()
4429 if (is64Bit()) { in getRelocation()
4461 assert(is64Bit()); in getHeader64()
4635 bool MachOObjectFile::is64Bit() const { in is64Bit() function in MachOObjectFile