HomeSort by relevance Sort by last modified time
    Searched defs:SectionType (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/MC/
MCSectionMachO.cpp 104 unsigned SectionType = TAA & MCSectionMachO::SECTION_TYPE;
105 assert(SectionType <= MCSectionMachO::LAST_KNOWN_SECTION_TYPE &&
106 "Invalid SectionType specified!");
108 if (SectionTypeDescriptors[SectionType].AssemblerName) {
110 OS << SectionTypeDescriptors[SectionType].AssemblerName;
225 StringRef SectionType = Comma.first;
226 StripSpaces(SectionType);
232 SectionType == SectionTypeDescriptors[TypeID].AssemblerName)
289 // If we have a stub size spec, we must have a sectiontype of S_SYMBOL_STUBS.
  /external/llvm/lib/Object/
MachOObjectFile.cpp 631 unsigned SectionType = Sect->Flags & MachO::SectionFlagMaskSectionType;
632 Result = (SectionType == MachO::SectionTypeZeroFill ||
633 SectionType == MachO::SectionTypeZeroFillLarge);
637 unsigned SectionType = Sect->Flags & MachO::SectionFlagMaskSectionType;
638 Result = (SectionType == MachO::SectionTypeZeroFill ||
639 SectionType == MachO::SectionTypeZeroFillLarge);
    [all...]

Completed in 215 milliseconds