Lines Matching refs:is64Bit
134 write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC); in writeHeader()
143 if (is64Bit()) in writeHeader()
147 (is64Bit()?sizeof(MachO::mach_header_64): sizeof(MachO::mach_header))); in writeHeader()
165 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
167 write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); in writeSegmentLoadCommand()
169 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
173 if (is64Bit()) { in writeSegmentLoadCommand()
216 if (is64Bit()) { in writeSection()
236 if (is64Bit()) in writeSection()
239 assert(OS.tell() - Start == (is64Bit() ? sizeof(MachO::section_64) : in writeSection()
383 if (is64Bit()) in writeNlist()
404 const std::vector<std::string> &Options, bool is64Bit) in ComputeLinkerOptionsLoadCommandSize() argument
409 return RoundUpToAlignment(Size, is64Bit ? 8 : 4); in ComputeLinkerOptionsLoadCommandSize()
415 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit()); in writeLinkerOptionsLoadCommand()
430 writeBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4)); in writeLinkerOptionsLoadCommand()
710 uint64_t LoadCommandsSize = is64Bit() ? in writeObject()
729 uint64_t LOHSize = RoundUpToAlignment(LOHRawSize, is64Bit() ? 8 : 4); in writeObject()
747 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit()); in writeObject()
752 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) : in writeObject()
846 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ? in writeObject()
908 writeBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4)); in writeObject()