HomeSort by relevance Sort by last modified time
    Searched refs:SectionType (Results 1 - 4 of 4) 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/jhead/
jhead.h 242 int RemoveSectionType(int SectionType);
245 Section_t * FindSection(int SectionType);
246 Section_t * CreateSection(int SectionType, unsigned char * Data, int size);
jpgfile.c 909 Section_t * FindSection(int SectionType)
914 if (Sections[a].Type == SectionType){
925 int RemoveSectionType(int SectionType)
929 if (Sections[a].Type == SectionType){
993 Section_t * CreateSection(int SectionType, unsigned char * Data, int Size)
1000 if (SectionType == M_EXIF) NewIndex = 0; // Exif alwas goes first!
1019 NewSection->Type = SectionType;
  /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 381 milliseconds