HomeSort by: relevance | last modified time | path
    Searched defs:Contributions (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h 102 std::unique_ptr<SectionContribution[]> Contributions;
110 return Contributions.get();
DWARFUnitIndex.h 102 std::unique_ptr<SectionContribution[]> Contributions;
110 return Contributions.get();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
llvm-dwp.cpp 327 DWARFUnitIndex::Entry::SectionContribution Contributions[8];
338 // UnitIndexEntry::Contributions.
345 // Convert a UnitIndexEntry::Contributions index to the corresponding on-disk
374 Entry.Contributions[0] = {};
378 auto &C = Entry.Contributions[getContributionIndex(Kind)];
384 auto &C = Entry.Contributions[TypesIndex];
386 C.Offset - TUEntry.Contributions[TypesIndex].Offset, C.Length));
404 Entry.Contributions[0] = {};
405 auto &C = Entry.Contributions[getContributionIndex(DW_SECT_EXT_TYPES)];
432 for (size_t i = 0; i != array_lengthof(E.second.Contributions); ++i
    [all...]
llvm-dwp.cpp 327 DWARFUnitIndex::Entry::SectionContribution Contributions[8];
338 // UnitIndexEntry::Contributions.
345 // Convert a UnitIndexEntry::Contributions index to the corresponding on-disk
374 Entry.Contributions[0] = {};
378 auto &C = Entry.Contributions[getContributionIndex(Kind)];
384 auto &C = Entry.Contributions[TypesIndex];
386 C.Offset - TUEntry.Contributions[TypesIndex].Offset, C.Length));
404 Entry.Contributions[0] = {};
405 auto &C = Entry.Contributions[getContributionIndex(DW_SECT_EXT_TYPES)];
432 for (size_t i = 0; i != array_lengthof(E.second.Contributions); ++i
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 102 // Collect all the contributions to the string offsets table from all units,
106 ContributionCollection Contributions;
109 Contributions.push_back(C);
110 // Sort the contributions so that any invalid ones are placed at
111 // the start of the contributions vector. This way they are reported
113 llvm::sort(Contributions,
121 // Uniquify contributions, as it is possible that units (specifically
122 // type units in dwo or dwp files) share contributions. We don't want
124 Contributions.erase(
125 std::unique(Contributions.begin(), Contributions.end()
    [all...]
DWARFContext.cpp 102 // Collect all the contributions to the string offsets table from all units,
106 ContributionCollection Contributions;
109 Contributions.push_back(C);
110 // Sort the contributions so that any invalid ones are placed at
111 // the start of the contributions vector. This way they are reported
113 llvm::sort(Contributions,
121 // Uniquify contributions, as it is possible that units (specifically
122 // type units in dwo or dwp files) share contributions. We don't want
124 Contributions.erase(
125 std::unique(Contributions.begin(), Contributions.end()
    [all...]

Completed in 76 milliseconds