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

  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h 40 DataExtractor AccelSection;
44 DWARFAcceleratorTable(DataExtractor AccelSection, DataExtractor StringSection,
46 : AccelSection(AccelSection), StringSection(StringSection), Relocs(Relocs) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp 48 if (!AccelSection.isValidOffset(offsetof(Header, HeaderDataLength)+4))
52 Hdr.Magic = AccelSection.getU32(&Offset);
53 Hdr.Version = AccelSection.getU16(&Offset);
54 Hdr.HashFunction = AccelSection.getU16(&Offset);
55 Hdr.BucketCount = AccelSection.getU32(&Offset);
56 Hdr.HashCount = AccelSection.getU32(&Offset);
57 Hdr.HeaderDataLength = AccelSection.getU32(&Offset);
63 if (!AccelSection.isValidOffset(sizeof(Hdr) + Hdr.HeaderDataLength +
69 HdrData.DIEOffsetBase = AccelSection.getU32(&Offset);
70 uint32_t NumAtoms = AccelSection.getU32(&Offset)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h 34 DWARFDataExtractor AccelSection;
70 DWARFAcceleratorTable(const DWARFDataExtractor &AccelSection,
72 : AccelSection(AccelSection), StringSection(StringSection) {}
174 AppleAcceleratorTable(const DWARFDataExtractor &AccelSection,
176 : DWARFAcceleratorTable(AccelSection, StringSection) {}
579 DWARFDebugNames(const DWARFDataExtractor &AccelSection,
581 : DWARFAcceleratorTable(AccelSection, StringSection) {}

Completed in 669 milliseconds