| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DataLayout.cpp | 336 SmallVector<StringRef, 3> Components; in parsePrimitiveSpec() local 339 Spec.drop_front().split(Components, ':'); in parsePrimitiveSpec() 341 if (Components.size() < 2 || Components.size() > 3) in parsePrimitiveSpec() 346 if (Error Err = parseSize(Components[0], BitWidth)) in parsePrimitiveSpec() 351 if (Error Err = parseAlignment(Components[1], ABIAlign, "ABI")) in parsePrimitiveSpec() 359 if (Components.size() > 2) in parsePrimitiveSpec() 360 if (Error Err = parseAlignment(Components[2], PrefAlign, "preferred")) in parsePrimitiveSpec() 373 SmallVector<StringRef, 3> Components; in parseAggregateSpec() local 375 Spec.drop_front().split(Components, ':'); in parseAggregateSpec() 377 if (Components.size() < 2 || Components.size() > 3) in parseAggregateSpec() [all …]
|
| H A D | ProfileSummary.cpp | 83 SmallVector<Metadata *, 16> Components; in getMD() local 84 Components.push_back(getKeyValMD(Context, "ProfileFormat", KindStr[PSK])); in getMD() 85 Components.push_back(getKeyValMD(Context, "TotalCount", getTotalCount())); in getMD() 86 Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount())); in getMD() 87 Components.push_back( in getMD() 89 Components.push_back( in getMD() 91 Components.push_back(getKeyValMD(Context, "NumCounts", getNumCounts())); in getMD() 92 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions())); in getMD() 94 Components.push_back( in getMD() 97 Components.push_back(getKeyFPValMD(Context, "PartialProfileRatio", in getMD() [all …]
|
| H A D | DebugInfoMetadata.cpp | 429 std::array<unsigned, 3> Components = {BD, DF, CI}; in encodeDiscriminator() local 437 std::accumulate(Components.begin(), Components.end(), RemainingWork); in encodeDiscriminator() 443 unsigned C = Components[I++]; in encodeDiscriminator()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.cpp | 143 LVStringRefs Components; in getAllLexicalComponents() local 145 Components.push_back( in getAllLexicalComponents() 148 return Components; in getAllLexicalComponents() 151 std::string llvm::logicalview::getScopedName(const LVStringRefs &Components, in getScopedName() argument 153 if (Components.empty()) in getScopedName() 159 Stream << Components[0]; in getScopedName() 160 for (LVStringRefs::size_type Index = 1; Index < Components.size(); ++Index) in getScopedName() 161 Stream << "::" << Components[Index]; in getScopedName()
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | Triple.cpp | 1024 SmallVector<StringRef, 4> Components; in Triple() local 1025 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3); in Triple() 1026 if (Components.size() > 0) { in Triple() 1027 Arch = parseArch(Components[0]); in Triple() 1028 SubArch = parseSubArch(Components[0]); in Triple() 1029 if (Components.size() > 1) { in Triple() 1030 Vendor = parseVendor(Components[1]); in Triple() 1031 if (Components.size() > 2) { in Triple() 1032 OS = parseOS(Components[2]); in Triple() 1033 if (Components.size() > 3) { in Triple() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 555 VTableComponentVectorTy Components; member in __anon1858bcf60111::VCallAndVBaseOffsetBuilder 605 const_iterator components_begin() const { return Components.rbegin(); } in components_begin() 606 const_iterator components_end() const { return Components.rend(); } in components_end() 672 -(int64_t)(NumComponentsAboveAddrPoint + Components.size()); in getCurrentOffsetOffset() 729 Components.push_back( in AddVCallOffsets() 774 Components.push_back( in AddVBaseOffsets() 834 SmallVector<VTableComponent, 64> Components; member in __anon1858bcf60111::ItaniumVTableBuilder 1049 ArrayRef<VTableComponent> vtable_components() const { return Components; } in vtable_components() 1124 if (Components[VTableIndex].getKind() == in ComputeThisAdjustments() 1198 const VTableComponent &Component = Components[TI.first]; in ComputeThisAdjustments() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewVisitor.cpp | 229 LVScope *get(LVStringRefs Components); 242 LVLexicalIndex find(LVStringRefs Components) { in find() argument 243 if (Components.empty()) in find() 248 for (LVStringRefs::size_type Index = 0; Index < Components.size(); in find() 251 LookupSet::iterator Iter = IdentifiedNamespaces.find(Components[Index]); in find() 394 LVStringRefs Components; in init() local 396 Components = getAllLexicalComponents(Unresolved); in init() 397 for (const StringRef &Component : Components) { in init() 422 LVScope *LVNamespaceDeduction::get(LVStringRefs Components) { in get() argument 424 for (const StringRef &Component : Components) in get() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ModRef.h | 363 CaptureInfo(CaptureComponents Components) in CaptureInfo() argument 364 : OtherComponents(Components), RetComponents(Components) {} in CaptureInfo()
|
| /freebsd/usr.sbin/freebsd-update/ |
| H A D | freebsd-update.conf | 14 Components src world kernel
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ |
| H A D | OffloadBundler.cpp | 89 SmallVector<StringRef, 6> Components; in OffloadTargetInfo() local 90 Target.split(Components, '-', /*MaxSplit=*/5); in OffloadTargetInfo() 91 assert((Components.size() == 5 || Components.size() == 6) && in OffloadTargetInfo() 95 Components.size() == 6 ? Components.back() : ""; in OffloadTargetInfo() 103 this->OffloadKind = Components.front(); in OffloadTargetInfo() 104 ArrayRef<StringRef> TripleSlice{&Components[1], /*length=*/4}; in OffloadTargetInfo() 1972 SmallVector<StringRef, 6> Components; in checkOffloadBundleID() local 1973 Str.split(Components, '-', /*MaxSplit=*/5); in checkOffloadBundleID() 1974 return Components.size() == 5 || Components.size() == 6; in checkOffloadBundleID()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewHTML.cpp | 784 SmallVector<std::pair<SmallString<128>, unsigned>, 16> Components; in buildTitleLinks() local 800 Components.emplace_back(std::move(RootPath), 0); in buildTitleLinks() 807 Components.back().second += Level; in buildTitleLinks() 808 Components.emplace_back(std::move(SubPath), Level); in buildTitleLinks() 813 for (auto I = Components.begin(), E = Components.end();;) { in buildTitleLinks()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
| H A D | MicrosoftDemangleNodes.h | 630 NodeArrayNode *Components = nullptr; member 633 Node *LastComponent = Components->Nodes[Components->Count - 1]; in getUnqualifiedIdentifier() 782 NodeArrayNode *Components = nullptr; member
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
| H A D | README.md | 116 LVStringRefs::iterator Iter = std::find_if(Components.begin(), Components.end(), 120 LVStringRefs::size_type FirstNonNamespace = std::distance(Components.begin(), Iter);
|
| /freebsd/sys/contrib/device-tree/Bindings/arm/freescale/ |
| H A D | fsl,imx7ulp-pm.txt | 1 Freescale i.MX7ULP Power Management Components
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | ispell | 127 # like in: /opt/Wolfram/WolframEngine/13.1/SystemFiles/Components/SpellingData/SpellingDictionaries… 134 # /opt/Wolfram/WolframEngine/13.1/SystemFiles/Components/SpellingData/SpellingDictionaries/en_US.aff 138 # /opt/Wolfram/WolframEngine/13.1/SystemFiles/Components/SpellingData/SpellingDictionaries/ar.aff 180 # /opt/Wolfram/WolframEngine/13.1/SystemFiles/Components/SpellingData/SpellingDictionaries/ar.aff
|
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | MicrosoftDemangle.cpp | 366 QN->Components = Arena.alloc<NodeArrayNode>(); in synthesizeQualifiedName() 367 QN->Components->Count = 1; in synthesizeQualifiedName() 368 QN->Components->Nodes = Arena.allocArray<Node *>(1); in synthesizeQualifiedName() 369 QN->Components->Nodes[0] = Identifier; in synthesizeQualifiedName() 1550 if (QN->Components->Count < 2) { in demangleFullyQualifiedSymbolName() 1556 Node *ClassNode = QN->Components->Nodes[QN->Components->Count - 2]; in demangleFullyQualifiedSymbolName() 1648 QN->Components = nodeListToNodeArray(Arena, Head, Count); in demangleNameScopeChain() 2186 PtrAuthQual->Components = Array; in createPointerAuthQualifier()
|
| H A D | MicrosoftDemangleNodes.cpp | 600 Components->output(OB, Flags); in output() 641 Components->output(OB, Flags, "::"); in output()
|
| /freebsd/sys/contrib/openzfs/cmd/zed/agents/ |
| H A D | README.md | 21 information see the **FMD Components in ZED** and **Implementation 49 ### FMD Components in ZED ###
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 6847 OMPClauseMappableExprCommon::MappableExprComponentListRef Components; member 6859 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, in MapInfo() 6866 : Components(Components), MapType(MapType), MapModifiers(MapModifiers), in MapInfo() 7091 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, in generateInfoForComponentList() argument 7289 auto CI = Components.rbegin(); 7290 auto CE = Components.rend(); 7761 QualType Ty = Components.rbegin() 7791 Components) { 7803 assert((VAT || CAT || &Component == &*Components.begin()) && 7815 assert(&Component == &*Components.begin() && [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | FrontendAction.cpp | 561 SmallVector<StringRef, 16> Components; in collectModuleHeaderIncludes() local 564 Components.push_back(*PathIt); in collectModuleHeaderIncludes() 567 for (auto It = Components.rbegin(), End = Components.rend(); It != End; in collectModuleHeaderIncludes()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | PPDirectives.cpp | 1962 static bool trySimplifyPath(SmallVectorImpl<StringRef> &Components, in trySimplifyPath() argument 1977 for (auto &Component : llvm::reverse(Components)) { in trySimplifyPath() 2546 SmallVector<StringRef, 16> Components(llvm::sys::path::begin(Name), in HandleHeaderIncludeOrImport() local 2564 assert(Components.size() >= 3 && "should have drive, backslash, name"); in HandleHeaderIncludeOrImport() 2565 assert(Components[0].size() == 2 && "should start with drive"); in HandleHeaderIncludeOrImport() 2566 assert(Components[0][1] == ':' && "should have colon"); in HandleHeaderIncludeOrImport() 2572 if (trySimplifyPath(Components, RealPathName, BackslashStyle)) { in HandleHeaderIncludeOrImport() 2581 for (auto Component : Components) { in HandleHeaderIncludeOrImport()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.h | 254 LLVM_ABI std::string getScopedName(const LVStringRefs &Components,
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 12112 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; in VisitOMPMapClause() local 12113 Components.reserve(TotalComponents); in VisitOMPMapClause() 12117 Components.emplace_back(AssociatedExprPr, AssociatedDecl, in VisitOMPMapClause() 12120 C->setComponents(Components, ListSizes); in VisitOMPMapClause() 12252 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; in VisitOMPToClause() local 12253 Components.reserve(TotalComponents); in VisitOMPToClause() 12258 Components.emplace_back(AssociatedExprPr, AssociatedDecl, IsNonContiguous); in VisitOMPToClause() 12260 C->setComponents(Components, ListSizes); in VisitOMPToClause() 12308 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; in VisitOMPFromClause() local 12309 Components.reserve(TotalComponents); in VisitOMPFromClause() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 187 TarjanSCC() : Components(1) {} in TarjanSCC() 199 return Components[ComponentID]; in getComponentFor() 220 unsigned ComponentID = Components.size(); in FindSCC() 221 Components.resize(Components.size() + 1); in FindSCC() 222 auto &Component = Components.back(); in FindSCC() 249 SmallVector<SmallPtrSet<const Value *, 8>, 8> Components; member
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 6015 void setComponents(ArrayRef<MappableComponent> Components, in setComponents() argument 6017 assert(Components.size() == NumComponents && in setComponents() 6021 llvm::copy(Components, getComponentsRef().begin()); in setComponents() 6064 auto Components = getComponentsRef(); in setClauseInfo() local 6065 auto CI = Components.begin(); in setClauseInfo() 6201 MappableExprComponentListRef Components, bool SupportsMapper, in const_component_lists_iterator() argument 6204 Components.begin()), in const_component_lists_iterator() 6208 ListSizeEnd(CumulativeListSizes.end()), End(Components.end()) { in const_component_lists_iterator() 6222 MappableExprComponentListRef Components, bool SupportsMapper, in const_component_lists_iterator() argument 6225 CumulativeListSizes, Components, in const_component_lists_iterator()
|