Searched refs:_is64 (Results 1 – 4 of 4) sorted by relevance
37 : SimpleDefinedAtom(file), _is64(is64) { } in LazyPointerAtom()46 return _is64 ? 8 : 4; in alignment()50 return _is64 ? 8 : 4; in size()64 const bool _is64; member in lld::mach_o::LazyPointerAtom73 : SimpleDefinedAtom(file), _is64(is64), _contentType(contentType) { } in NonLazyPointerAtom()82 return _is64 ? 8 : 4; in alignment()86 return _is64 ? 8 : 4; in size()100 const bool _is64; member in lld::mach_o::NonLazyPointerAtom
30 : SimpleDefinedAtom(file), _is64(is64), _name(name) {} in TLVPEntryAtom()39 return _is64 ? 8 : 4; in alignment()43 return _is64 ? 8 : 4; in size()61 const bool _is64; member in lld::mach_o::TLVPEntryAtom
54 : SimpleDefinedAtom(file), _is64(is64), _name(name) { } in GOTEntryAtom()63 return _is64 ? 8 : 4; in alignment()67 return _is64 ? 8 : 4; in size()85 const bool _is64; member in lld::mach_o::GOTEntryAtom
189 const bool _is64; member in lld::mach_o::normalized::MachOFileLayout246 return llvm::alignTo(value, _is64 ? 8 : 4); in pointerAlign()257 _is64(MachOLinkingContext::is64Bit(file.arch)), in MachOFileLayout()261 _startOfLoadCommands = _is64 ? sizeof(mach_header_64) : sizeof(mach_header); in MachOFileLayout()263 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command)); in MachOFileLayout()264 const size_t sectsSize = (_is64 ? sizeof(section_64) : sizeof(section)); in MachOFileLayout()387 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command)); in loadCommandsSize()388 const size_t sectionSize = (_is64 ? sizeof(section_64) : sizeof(section)); in loadCommandsSize()593 mh->magic = _is64 ? llvm::MachO::MH_MAGIC_64 : llvm::MachO::MH_MAGIC; in writeMachHeader()775 if (_is64) { in writeLoadCommands()[all …]