• Home
  • Raw
  • Download

Lines Matching refs:is64Bit

134   write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);  in writeHeader()
143 if (is64Bit()) in writeHeader()
148 (is64Bit() ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header))); in writeHeader()
166 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
168 write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); in writeSegmentLoadCommand()
170 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
175 if (is64Bit()) { in writeSegmentLoadCommand()
218 if (is64Bit()) { in writeSection()
234 if (is64Bit()) in writeSection()
238 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
383 if (is64Bit()) in writeNlist()
404 const std::vector<std::string> &Options, bool is64Bit) in ComputeLinkerOptionsLoadCommandSize() argument
409 return alignTo(Size, is64Bit ? 8 : 4); in ComputeLinkerOptionsLoadCommandSize()
415 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit()); in writeLinkerOptionsLoadCommand()
430 writeBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4)); in writeLinkerOptionsLoadCommand()
724 uint64_t LoadCommandsSize = is64Bit() ? in writeObject()
743 uint64_t LOHSize = alignTo(LOHRawSize, is64Bit() ? 8 : 4); in writeObject()
761 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit()); in writeObject()
766 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) : in writeObject()
881 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ? in writeObject()
943 writeBytes("", OffsetToAlignment(LOHRawSize, is64Bit() ? 8 : 4)); in writeObject()