• Home
  • Raw
  • Download

Lines Matching refs:is64Bit

148   W.write<uint32_t>(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);  in writeHeader()
157 if (is64Bit()) in writeHeader()
160 assert(W.OS.tell() - Start == (is64Bit() ? sizeof(MachO::mach_header_64) in writeHeader()
185 is64Bit() ? sizeof(MachO::segment_command_64): in writeSegmentLoadCommand()
187 W.write<uint32_t>(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); in writeSegmentLoadCommand()
189 NumSections * (is64Bit() ? sizeof(MachO::section_64) : in writeSegmentLoadCommand()
193 if (is64Bit()) { in writeSegmentLoadCommand()
236 if (is64Bit()) { in writeSection()
252 if (is64Bit()) in writeSection()
256 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))); in writeSection()
401 if (is64Bit()) in writeNlist()
422 const std::vector<std::string> &Options, bool is64Bit) in ComputeLinkerOptionsLoadCommandSize() argument
427 return alignTo(Size, is64Bit ? 8 : 4); in ComputeLinkerOptionsLoadCommandSize()
433 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit()); in writeLinkerOptionsLoadCommand()
449 offsetToAlignment(BytesWritten, is64Bit() ? Align(8) : Align(4))); in writeLinkerOptionsLoadCommand()
769 uint64_t LoadCommandsSize = is64Bit() ? in writeObject()
791 uint64_t LOHSize = alignTo(LOHRawSize, is64Bit() ? 8 : 4); in writeObject()
809 LoadCommandsSize += ComputeLinkerOptionsLoadCommandSize(Option, is64Bit()); in writeObject()
814 uint64_t SectionDataStart = (is64Bit() ? sizeof(MachO::mach_header_64) : in writeObject()
838 offsetToAlignment(SectionDataFileSize, is64Bit() ? Align(8) : Align(4)); in writeObject()
936 SymbolTableOffset + NumSymTabSymbols * (is64Bit() ? in writeObject()
1004 offsetToAlignment(LOHRawSize, is64Bit() ? Align(8) : Align(4))); in writeObject()