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()
484 if (is64Bit()) in getSectionAddress()
490 if (is64Bit()) in getSectionSize()
500 if (is64Bit()) { in getSectionContents()
516 if (is64Bit()) { in getSectionAlignment()
567 if (is64Bit()) { in section_rel_end()
604 unsigned SymbolTableEntrySize = is64Bit() ? in getRelocationSymbol()
932 unsigned SymbolTableEntrySize = is64Bit() ? in symbol_end_impl()
950 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist); in getSymbolByIndex()
968 return is64Bit() ? 8 : 4; in getBytesInAddress()
973 if (!is64Bit()) { in getFileFormatName()
1395 MachORebaseEntry::MachORebaseEntry(ArrayRef<uint8_t> Bytes, bool is64Bit) in MachORebaseEntry() argument
1398 PointerSize(is64Bit ? 8 : 4), Malformed(false), Done(false) {} in MachORebaseEntry()
1563 return rebaseTable(getDyldInfoRebaseOpcodes(), is64Bit()); in rebaseTable()
1567 MachOBindEntry::MachOBindEntry(ArrayRef<uint8_t> Bytes, bool is64Bit, in MachOBindEntry() argument
1571 BindType(0), PointerSize(is64Bit ? 8 : 4), in MachOBindEntry()
1818 return bindTable(getDyldInfoBindOpcodes(), is64Bit(), in bindTable()
1823 return bindTable(getDyldInfoLazyBindOpcodes(), is64Bit(), in lazyBindTable()
1828 return bindTable(getDyldInfoWeakBindOpcodes(), is64Bit(), in weakBindTable()
2093 if (is64Bit()) { in getRelocation()
2118 assert(is64Bit()); in getHeader64()
2277 bool MachOObjectFile::is64Bit() const { in is64Bit() function in MachOObjectFile