HomeSort by relevance Sort by last modified time
    Searched refs:NumSections (Results 1 - 7 of 7) sorted by null

  /external/llvm/tools/macho-dump/
macho-dump.cpp 57 uint32_t NumSections, uint32_t Flags) {
66 outs() << " ('num_sections', " << NumSections << ")\n";
132 SLC.NumSections, SLC.Flags);
136 for (unsigned i = 0; i != SLC.NumSections; ++i) {
156 SLC.NumSections, SLC.Flags);
160 for (unsigned i = 0; i != SLC.NumSections; ++i) {
  /external/llvm/include/llvm/Object/
MachOFormat.h 192 uint32_t NumSections;
206 uint32_t NumSections;
  /external/llvm/lib/MC/
MachObjectWriter.cpp 157 /// \param NumSections The number of sections in this segment.
159 void MachObjectWriter::WriteSegmentLoadCommand(unsigned NumSections,
174 NumSections * (is64Bit() ? macho::Section64Size :
191 Write32(NumSections);
720 unsigned NumSections = Asm.size();
726 macho::SegmentLoadCommand64Size + NumSections * macho::Section64Size :
727 macho::SegmentLoadCommand32Size + NumSections * macho::Section32Size;
787 WriteSegmentLoadCommand(NumSections, VMSize,
    [all...]
ELFObjectWriter.cpp     [all...]
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 24 void dumpSections(unsigned numSections);
52 void COFFDumper::dumpSections(unsigned NumSections) {
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 170 /// \param NumSections The number of sections in this segment.
172 void WriteSegmentLoadCommand(unsigned NumSections,
  /external/llvm/lib/Object/
MachOObjectFile.cpp 179 SwapValue(C.NumSections);
193 SwapValue(C.NumSections);
230 return S.NumSections;
233 return S.NumSections;
434 uint32_t NumSections = getSegmentLoadCommandNumSections(this, Load);
435 for (unsigned J = 0; J < NumSections; ++J) {
    [all...]

Completed in 113 milliseconds