Lines Matching refs:is64Bit
73 bool Is64 = O->is64Bit(); in getSectionPtr()
156 if (O->is64Bit()) { in getSectionFlags()
179 unsigned HeaderSize = Obj->is64Bit() ? sizeof(MachO::mach_header_64) in getFirstLoadCommandInfo()
215 Obj->is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section); in parseSegmentLoadCommand()
234 if (is64Bit()) in MachOObjectFile()
324 unsigned SymbolTableEntrySize = is64Bit() ? in moveSymbolNext()
347 if (is64Bit()) { in getNValue()
483 if (is64Bit()) in getSectionAddress()
496 if (is64Bit()) { in getSectionSize()
522 if (is64Bit()) { in getSectionContents()
538 if (is64Bit()) { in getSectionAlignment()
589 if (is64Bit()) { in section_rel_end()
626 unsigned SymbolTableEntrySize = is64Bit() ? in getRelocationSymbol()
954 unsigned SymbolTableEntrySize = is64Bit() ? in symbol_end_impl()
972 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolByIndex()
990 return is64Bit() ? 8 : 4; in getBytesInAddress()
995 if (!is64Bit()) { in getFileFormatName()
1413 MachORebaseEntry::MachORebaseEntry(ArrayRef<uint8_t> Bytes, bool is64Bit) in MachORebaseEntry() argument
1416 PointerSize(is64Bit ? 8 : 4), Malformed(false), Done(false) {} in MachORebaseEntry()
1580 return rebaseTable(getDyldInfoRebaseOpcodes(), is64Bit()); in rebaseTable()
1583 MachOBindEntry::MachOBindEntry(ArrayRef<uint8_t> Bytes, bool is64Bit, Kind BK) in MachOBindEntry() argument
1586 BindType(0), PointerSize(is64Bit ? 8 : 4), in MachOBindEntry()
1831 return bindTable(getDyldInfoBindOpcodes(), is64Bit(), in bindTable()
1836 return bindTable(getDyldInfoLazyBindOpcodes(), is64Bit(), in lazyBindTable()
1841 return bindTable(getDyldInfoWeakBindOpcodes(), is64Bit(), in weakBindTable()
2105 if (is64Bit()) { in getRelocation()
2130 assert(is64Bit()); in getHeader64()
2289 bool MachOObjectFile::is64Bit() const { in is64Bit() function in MachOObjectFile