Lines Matching refs:is64Bit

150   W.write<uint32_t>(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);  in writeHeader()
159 if (is64Bit()) in writeHeader()
162 assert(W.OS.tell() - Start == (is64Bit() ? sizeof(MachO::mach_header_64) in writeHeader()
187 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
189 W.write<uint32_t>(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); in writeSegmentLoadCommand()
191 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
195 if (is64Bit()) { in writeSegmentLoadCommand()
238 if (is64Bit()) { in writeSection()
254 if (is64Bit()) in writeSection()
258 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
403 if (is64Bit()) in writeNlist()
424 const std::vector<std::string> &Options, bool is64Bit) in ComputeLinkerOptionsLoadCommandSize() argument
429 return alignTo(Size, is64Bit ? 8 : 4); in ComputeLinkerOptionsLoadCommandSize()
435 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit()); in writeLinkerOptionsLoadCommand()
451 offsetToAlignment(BytesWritten, is64Bit() ? Align(8) : Align(4))); in writeLinkerOptionsLoadCommand()
759 unsigned Log2Size = is64Bit() ? 3 : 2; in populateAddrSigSection()
802 uint64_t LoadCommandsSize = is64Bit() ? in writeObject()
835 uint64_t LOHSize = alignTo(LOHRawSize, is64Bit() ? 8 : 4); in writeObject()
853 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit()); in writeObject()
858 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) : in writeObject()
882 offsetToAlignment(SectionDataFileSize, is64Bit() ? Align(8) : Align(4)); in writeObject()
985 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ? in writeObject()
1053 offsetToAlignment(LOHRawSize, is64Bit() ? Align(8) : Align(4))); in writeObject()