Searched refs:_is64 (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DGOTPass.cpp54 : SimpleDefinedAtom(file), _is64(is64), _name(name) { }
63 return _is64 ? 8 : 4;
67 return _is64 ? 8 : 4;
85 const bool _is64; member in class:lld::mach_o::GOTEntryAtom
H A DTLVPass.cpp30 : SimpleDefinedAtom(file), _is64(is64), _name(name) {}
39 return _is64 ? 8 : 4;
43 return _is64 ? 8 : 4;
61 const bool _is64; member in class:lld::mach_o::TLVPEntryAtom
H A DStubsPass.cpp37 : SimpleDefinedAtom(file), _is64(is64) { }
46 return _is64 ? 8 : 4;
50 return _is64 ? 8 : 4;
64 const bool _is64; member in class:lld::mach_o::LazyPointerAtom
73 : SimpleDefinedAtom(file), _is64(is64), _contentType(contentType) { }
82 return _is64 ? 8 : 4;
86 return _is64 ? 8 : 4;
100 const bool _is64; member in class:lld::mach_o::NonLazyPointerAtom
H A DMachONormalizedFileBinaryWriter.cpp189 const bool _is64; member in class:lld::mach_o::normalized::MachOFileLayout
246 return llvm::alignTo(value, _is64 ? 8 : 4);
257 _is64(MachOLinkingContext::is64Bit(file.arch)),
261 _startOfLoadCommands = _is64 ? sizeof(mach_header_64) : sizeof(mach_header);
263 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command));
264 const size_t sectsSize = (_is64 ? sizeof(section_64) : sizeof(section));
387 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command));
388 const size_t sectionSize = (_is64 ? sizeof(section_64) : sizeof(section));
593 mh->magic = _is64 ? llvm::MachO::MH_MAGIC_64 : llvm::MachO::MH_MAGIC;
775 if (_is64) {
[all...]

Completed in 110 milliseconds