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

  /src/external/apache2/llvm/dist/llvm/lib/IR/
ProfileSummary.cpp 84 SmallVector<Metadata *, 16> Components;
85 Components.push_back(getKeyValMD(Context, "ProfileFormat", KindStr[PSK]));
86 Components.push_back(getKeyValMD(Context, "TotalCount", getTotalCount()));
87 Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount()));
88 Components.push_back(
90 Components.push_back(
92 Components.push_back(getKeyValMD(Context, "NumCounts", getNumCounts()));
93 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions()));
95 Components.push_back(
98 Components.push_back(getKeyFPValMD(Context, "PartialProfileRatio"
    [all...]
DebugInfoMetadata.cpp 143 std::array<unsigned, 3> Components = {BD, DF, CI};
145 // We use RemainingWork to figure out if we have no remaining components to
148 // Since any of the input components is at most 32 bits, their sum will be
150 RemainingWork = std::accumulate(Components.begin(), Components.end(), RemainingWork);
156 unsigned C = Components[I++];
164 // checking equivalence of components before & after encoding. Alternatively,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Triple.cpp 769 SmallVector<StringRef, 4> Components;
770 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3);
771 if (Components.size() > 0) {
772 Arch = parseArch(Components[0]);
773 SubArch = parseSubArch(Components[0]);
774 if (Components.size() > 1) {
775 Vendor = parseVendor(Components[1]);
776 if (Components.size() > 2) {
777 OS = parseOS(Components[2]);
778 if (Components.size() > 3)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 118 OMPClauseMappableExprCommon::MappableExprComponentLists Components;
954 MI->second.Components)
976 MI->second.Components)
983 /// declaration and initialize it with the provided list of components.
986 OMPClauseMappableExprCommon::MappableExprComponentListRef Components,
989 // Create new entry and append the new components there.
990 MEC.Components.resize(MEC.Components.size() + 1);
991 MEC.Components.back().append(Components.begin(), Components.end())
    [all...]
TreeTransform.h 2475 ArrayRef<Sema::OffsetOfComponent> Components,
2477 return getSema().BuildBuiltinOffsetOf(OperatorLoc, Type, Components,
10379 // Transform all of the components into components similar to what the
10387 SmallVector<Component, 4> Components;
10421 Components.push_back(Comp);
10432 Components, E->getRParenLoc());
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
InterpolatingCompilationDatabase.cpp 346 Components.emplace_back(*Dir, I);
350 llvm::sort(Components);
416 Award(1, indexLookup</*Prefix=*/false>(Dir, Components));
507 std::vector<SubstringAndIndex> Components; // Last path components.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-config/
llvm-config.cpp 43 // and required components for all of the available libraries.
45 // Not all components define a library, we also use "library groups" as a way to
74 /// \param VisitedComponents [in] [out] - The set of already visited components.
91 errs() << "Can't find component: '" << Name << "' in the map. Available components are: ";
106 // Only include non-installed components if requested.
156 /// components, in an order suitable for passing to a linker (that is, libraries
159 /// \param Components - The names of the components to find libraries for.
160 /// \param IncludeNonInstalled - Whether non-installed components should be
164 const std::vector<StringRef> &Components, bool IncludeNonInstalled
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendAction.cpp 386 SmallVector<StringRef, 16> Components;
389 Components.push_back(*PathIt);
392 for (auto It = Components.rbegin(), End = Components.rend(); It != End;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
MicrosoftDemangleNodes.h 531 NodeArrayNode *Components = nullptr;
534 Node *LastComponent = Components->Nodes[Components->Count - 1];
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
NewGVN.cpp 191 TarjanSCC() : Components(1) {}
203 return Components[ComponentID];
224 unsigned ComponentID = Components.size();
225 Components.resize(Components.size() + 1);
226 auto &Component = Components.back();
251 // Store the components as vector of ptr sets, because we need the topo order
253 SmallVector<SmallPtrSet<const Value *, 8>, 8> Components;
  /src/external/apache2/llvm/dist/llvm/tools/sancov/
sancov.cpp 1083 SmallVector<StringRef, 2> Components;
1089 auto Ok = SancovFileRegex.match(ShortFileName, &Components);
1096 auto Iter = ObjFiles.find(std::string(Components[1]));
  /src/external/apache2/llvm/dist/clang/lib/AST/
VTableBuilder.cpp 552 /// Components - vcall and vbase offset components
554 VTableComponentVectorTy Components;
602 /// Methods for iterating over the components.
604 const_iterator components_begin() const { return Components.rbegin(); }
605 const_iterator components_end() const { return Components.rend(); }
667 int64_t OffsetIndex = -(int64_t)(3 + Components.size());
723 Components.push_back(
768 Components.push_back(
827 /// Components - The components of the vtable being built
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 4870 // List of components of an expression. This first one is the whole
4901 /// Total number of expression components.
4925 /// Total number of components in this clause.
4942 /// components.
4952 /// NumComponents: total number of expression components in the clause.
5049 /// Get the components that are in the trailing objects of the class.
5057 /// Get the components that are in the trailing objects of the class.
5065 /// Set the components that are in the trailing objects of the class.
5068 void setComponents(ArrayRef<MappableComponent> Components,
5070 assert(Components.size() == NumComponents &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 3009 llvm::Constant *Components[] = {
3013 llvm::Constant *Descriptor = llvm::ConstantStruct::getAnon(Components);
CGOpenMPRuntime.cpp 7208 OMPClauseMappableExprCommon::MappableExprComponentListRef Components;
7220 OMPClauseMappableExprCommon::MappableExprComponentListRef Components,
7227 : Components(Components), MapType(MapType), MapModifiers(MapModifiers),
7260 /// Map between device pointer declarations and their expression components.
7436 /// map type, map or motion modifiers, and expression components.
7438 /// components is the first associated with a capture.
7442 OMPClauseMappableExprCommon::MappableExprComponentListRef Components,
7623 // Scan the components from the base to the complete expression.
7624 auto CI = Components.rbegin()
    [all...]

Completed in 73 milliseconds