Lines Matching refs:is64Bit

101   bool Is64 = O.is64Bit();  in getSectionPtr()
181 if (O.is64Bit()) { in getSectionFlags()
206 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64) in getFirstLoadCommandInfo()
217 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64) in getNextLoadCommandInfo()
428 if (Obj.is64Bit()) { in checkSymtabCommand()
505 if (Obj.is64Bit()) { in checkDysymtabCommand()
1269 if (is64Bit()) { in MachOObjectFile()
1317 if (is64Bit()) { in MachOObjectFile()
1690 if (is64Bit()) { in checkSymbolTable()
1706 if (is64Bit()) { in checkSymbolTable()
1756 unsigned SymbolTableEntrySize = is64Bit() ? in moveSymbolNext()
1784 if (is64Bit()) { in getNValue()
1926 if (is64Bit()) in getSectionAddress()
1943 if (is64Bit()) { in getSectionSize()
1974 if (is64Bit()) { in getSectionContents()
1989 if (is64Bit()) { in getSectionAlignment()
2118 if (is64Bit()) in isSectionStripped()
2133 if (is64Bit()) { in section_rel_end()
2205 unsigned SymbolTableEntrySize = is64Bit() ? in getRelocationSymbol()
2561 unsigned SymbolTableEntrySize = is64Bit() ? in symbol_end()
2575 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolByIndex()
2587 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolIndex()
2606 return is64Bit() ? 8 : 4; in getBytesInAddress()
2611 if (!is64Bit()) { in getFileFormatName()
3296 ArrayRef<uint8_t> Bytes, bool is64Bit) in MachORebaseEntry() argument
3298 PointerSize(is64Bit ? 8 : 4) {} in MachORebaseEntry()
3629 return rebaseTable(Err, this, getDyldInfoRebaseOpcodes(), is64Bit()); in rebaseTable()
3633 ArrayRef<uint8_t> Bytes, bool is64Bit, Kind BK) in MachOBindEntry() argument
3635 PointerSize(is64Bit ? 8 : 4), TableKind(BK) {} in MachOBindEntry()
4289 return bindTable(Err, this, getDyldInfoBindOpcodes(), is64Bit(), in bindTable()
4294 return bindTable(Err, this, getDyldInfoLazyBindOpcodes(), is64Bit(), in lazyBindTable()
4299 return bindTable(Err, this, getDyldInfoWeakBindOpcodes(), is64Bit(), in weakBindTable()
4589 if (is64Bit()) { in getRelocation()
4621 assert(is64Bit()); in getHeader64()
4876 bool MachOObjectFile::is64Bit() const { in is64Bit() function in MachOObjectFile