| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | Triple.cpp | 769 SmallVector<StringRef, 4> Components; in Triple() local 770 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3); in Triple() 771 if (Components.size() > 0) { in Triple() 772 Arch = parseArch(Components[0]); in Triple() 773 SubArch = parseSubArch(Components[0]); in Triple() 774 if (Components.size() > 1) { in Triple() 775 Vendor = parseVendor(Components[1]); in Triple() 776 if (Components.size() > 2) { in Triple() 777 OS = parseOS(Components[2]); in Triple() 778 if (Components.size() > 3) { in Triple() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | ProfileSummary.cpp | 84 SmallVector<Metadata *, 16> Components; in getMD() local 85 Components.push_back(getKeyValMD(Context, "ProfileFormat", KindStr[PSK])); in getMD() 86 Components.push_back(getKeyValMD(Context, "TotalCount", getTotalCount())); in getMD() 87 Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount())); in getMD() 88 Components.push_back( in getMD() 90 Components.push_back( in getMD() 92 Components.push_back(getKeyValMD(Context, "NumCounts", getNumCounts())); in getMD() 93 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions())); in getMD() 95 Components.push_back( in getMD() 98 Components.push_back(getKeyFPValMD(Context, "PartialProfileRatio", in getMD() [all …]
|
| H A D | DebugInfoMetadata.cpp | 143 std::array<unsigned, 3> Components = {BD, DF, CI}; in encodeDiscriminator() local 150 RemainingWork = std::accumulate(Components.begin(), Components.end(), RemainingWork); in encodeDiscriminator() 156 unsigned C = Components[I++]; in encodeDiscriminator()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-config/ |
| H A D | llvm-config.cpp | 164 const std::vector<StringRef> &Components, bool IncludeNonInstalled, in ComputeLibsForComponents() argument 179 for (unsigned i = 0, e = Components.size(); i != e; ++i) { in ComputeLibsForComponents() 181 std::string ComponentLower = Components[i].lower(); in ComputeLibsForComponents() 185 llvm::errs() << "llvm-config: unknown component name: " << Components[i] in ComputeLibsForComponents() 282 std::vector<StringRef> Components; in main() local 536 std::vector<std::string> Components; in main() local 542 Components.push_back(AvailableComponents[j].Name); in main() 550 Components = in main() 552 llvm::sort(Components); in main() 558 for (unsigned I = 0; I < Components.size(); ++I) { in main() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 554 VTableComponentVectorTy Components; member in __anon6f3b34010111::VCallAndVBaseOffsetBuilder 604 const_iterator components_begin() const { return Components.rbegin(); } in components_begin() 605 const_iterator components_end() const { return Components.rend(); } in components_end() 667 int64_t OffsetIndex = -(int64_t)(3 + Components.size()); in getCurrentOffsetOffset() 723 Components.push_back( in AddVCallOffsets() 768 Components.push_back( in AddVBaseOffsets() 828 SmallVector<VTableComponent, 64> Components; member in __anon6f3b34010111::ItaniumVTableBuilder 1043 ArrayRef<VTableComponent> vtable_components() const { return Components; } in vtable_components() 1118 if (Components[VTableIndex].getKind() == in ComputeThisAdjustments() 1161 const VTableComponent &Component = Components[TI.first]; in ComputeThisAdjustments() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | simd | 1 // Components for element-wise operations on data-parallel objects -*- C++ -*- 41 * Components defined by the _C++ Extensions for Parallelism_
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| H A D | InterpolatingCompilationDatabase.cpp | 346 Components.emplace_back(*Dir, I); in FileIndex() 350 llvm::sort(Components); in FileIndex() 416 Award(1, indexLookup</*Prefix=*/false>(Dir, Components)); in scoreCandidates() 507 std::vector<SubstringAndIndex> Components; // Last path components. member in clang::tooling::__anon983895e40111::FileIndex
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
| H A D | MicrosoftDemangleNodes.h | 531 NodeArrayNode *Components = nullptr; member 534 Node *LastComponent = Components->Nodes[Components->Count - 1]; in getUnqualifiedIdentifier()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/runtimes/ |
| H A D | CMakeLists.txt | 197 include(${LLVM_BINARY_DIR}/runtimes/Components.cmake OPTIONAL) 199 …rty(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${LLVM_BINARY_DIR}/runtimes/Components.cmake) 255 include(${LLVM_BINARY_DIR}/runtimes/${name}/Components.cmake OPTIONAL) 256 …CTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${LLVM_BINARY_DIR}/runtimes/${name}/Components.cmake)
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
| H A D | MicrosoftDemangle.cpp | 328 QN->Components = Arena.alloc<NodeArrayNode>(); in synthesizeQualifiedName() 329 QN->Components->Count = 1; in synthesizeQualifiedName() 330 QN->Components->Nodes = Arena.allocArray<Node *>(1); in synthesizeQualifiedName() 331 QN->Components->Nodes[0] = Identifier; in synthesizeQualifiedName() 1501 if (QN->Components->Count < 2) { in demangleFullyQualifiedSymbolName() 1507 Node *ClassNode = QN->Components->Nodes[QN->Components->Count - 2]; in demangleFullyQualifiedSymbolName() 1597 QN->Components = nodeListToNodeArray(Arena, Head, Count); in demangleNameScopeChain()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | PPDirectives.cpp | 1641 static bool trySimplifyPath(SmallVectorImpl<StringRef> &Components, in trySimplifyPath() argument 1649 for (auto &Component : llvm::reverse(Components)) { in trySimplifyPath() 2131 SmallVector<StringRef, 16> Components(llvm::sys::path::begin(Name), in HandleHeaderIncludeOrImport() local 2149 assert(Components.size() >= 3 && "should have drive, backslash, name"); in HandleHeaderIncludeOrImport() 2150 assert(Components[0].size() == 2 && "should start with drive"); in HandleHeaderIncludeOrImport() 2151 assert(Components[0][1] == ':' && "should have colon"); in HandleHeaderIncludeOrImport() 2157 if (trySimplifyPath(Components, RealPathName)) { in HandleHeaderIncludeOrImport() 2166 for (auto Component : Components) { in HandleHeaderIncludeOrImport()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | FrontendAction.cpp | 386 SmallVector<StringRef, 16> Components; in collectModuleHeaderIncludes() local 389 Components.push_back(*PathIt); in collectModuleHeaderIncludes() 392 for (auto It = Components.rbegin(), End = Components.rend(); It != End; in collectModuleHeaderIncludes()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 7208 OMPClauseMappableExprCommon::MappableExprComponentListRef Components; member 7220 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, in MapInfo() 7227 : Components(Components), MapType(MapType), MapModifiers(MapModifiers), in MapInfo() 7442 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, in generateInfoForComponentList() argument 7624 auto CI = Components.rbegin(); in generateInfoForComponentList() 7625 auto CE = Components.rend(); in generateInfoForComponentList() 8018 QualType Ty = Components.rbegin() in generateInfoForComponentList() 8048 Components) { in generateInfoForComponentList() 8060 assert((VAT || CAT || &Component == &*Components.begin()) && in generateInfoForComponentList() 8072 assert(&Component == &*Components.begin() && in generateInfoForComponentList() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
| H A D | string | 1 // Components for manipulating sequences of characters -*- C++ -*-
|
| H A D | coroutine | 42 * Components for supporting coroutine implementations.
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
| H A D | string | 1 // Components for manipulating sequences of characters -*- C++ -*-
|
| H A D | memory | 53 * Components for memory allocation, deallocation, and management.
|
| H A D | coroutine | 49 * Components for supporting coroutine implementations.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/sancov/ |
| H A D | sancov.cpp | 1083 SmallVector<StringRef, 2> Components; in readSymbolizeAndMergeCmdArguments() local 1089 auto Ok = SancovFileRegex.match(ShortFileName, &Components); in readSymbolizeAndMergeCmdArguments() 1096 auto Iter = ObjFiles.find(std::string(Components[1])); in readSymbolizeAndMergeCmdArguments()
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/docs/ |
| H A D | Cxx1zStatusPaperStatus.csv | 30 "`P0220R1 <https://wg21.link/P0220R1>`__","LWG","Adopt Library Fundamentals V1 TS Components for C+… 61 "`p0295r0 <https://wg21.link/p0295r0>`__","LWG","Adopt Selected Library Fundamentals V2 Components …
|
| /netbsd-src/external/bsd/openldap/dist/doc/rfc/ |
| H A D | rfc3687.txt | 70 3.1.2. Referencing SET, SEQUENCE and CHOICE Components. 8 71 3.1.3. Referencing SET OF and SEQUENCE OF Components. . 9 72 3.1.4. Referencing Components of Parameterized Types. . 10 74 3.1.6. Referencing Components of Open Types . . . . . . 12 78 3.2. Matching of Components . . . . . . . . . . . . . . . . . 15 89 6. Equality Matching of Complex Components. . . . . . . . . . . . 24 427 3.1.2. Referencing SET, SEQUENCE and CHOICE Components 485 3.1.3. Referencing SET OF and SEQUENCE OF Components 541 3.1.4. Referencing Components of Parameterized Types 623 3.1.6. Referencing Components of Open Types [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 191 TarjanSCC() : Components(1) {} in TarjanSCC() 203 return Components[ComponentID]; in getComponentFor() 224 unsigned ComponentID = Components.size(); in FindSCC() 225 Components.resize(Components.size() + 1); in FindSCC() 226 auto &Component = Components.back(); in FindSCC() 253 SmallVector<SmallPtrSet<const Value *, 8>, 8> Components; member
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 12550 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; in VisitOMPMapClause() local 12551 Components.reserve(TotalComponents); in VisitOMPMapClause() 12555 Components.emplace_back(AssociatedExprPr, AssociatedDecl, in VisitOMPMapClause() 12558 C->setComponents(Components, ListSizes); in VisitOMPMapClause() 12673 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; in VisitOMPToClause() local 12674 Components.reserve(TotalComponents); in VisitOMPToClause() 12679 Components.emplace_back(AssociatedExprPr, AssociatedDecl, IsNonContiguous); in VisitOMPToClause() 12681 C->setComponents(Components, ListSizes); in VisitOMPToClause() 12729 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; in VisitOMPFromClause() local 12730 Components.reserve(TotalComponents); in VisitOMPFromClause() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 5068 void setComponents(ArrayRef<MappableComponent> Components, in setComponents() argument 5070 assert(Components.size() == NumComponents && in setComponents() 5074 std::copy(Components.begin(), Components.end(), getComponentsRef().begin()); in setComponents() 5117 auto Components = getComponentsRef(); in setClauseInfo() local 5118 auto CI = Components.begin(); in setClauseInfo() 5254 MappableExprComponentListRef Components, bool SupportsMapper, in const_component_lists_iterator() argument 5257 Components.begin()), in const_component_lists_iterator() 5261 ListSizeEnd(CumulativeListSizes.end()), End(Components.end()) { in const_component_lists_iterator() 5275 MappableExprComponentListRef Components, bool SupportsMapper, in const_component_lists_iterator() argument 5278 CumulativeListSizes, Components, in const_component_lists_iterator()
|
| /netbsd-src/external/bsd/openldap/dist/doc/drafts/ |
| H A D | draft-stroeder-namedobject-xx.txt | 48 to this document. Code Components extracted from this document must
|