| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenACCClause.cpp | 155 DiagGangWorkerVectorSeqConflict(SemaOpenACC::OpenACCParsedClause &Clause) { in DiagGangWorkerVectorSeqConflict() argument 156 if (Clause.getDirectiveKind() != OpenACCDirectiveKind::Loop && in DiagGangWorkerVectorSeqConflict() 157 !isOpenACCCombinedDirectiveKind(Clause.getDirectiveKind())) in DiagGangWorkerVectorSeqConflict() 159 assert(Clause.getClauseKind() == OpenACCClauseKind::Gang || in DiagGangWorkerVectorSeqConflict() 160 Clause.getClauseKind() == OpenACCClauseKind::Worker || in DiagGangWorkerVectorSeqConflict() 161 Clause.getClauseKind() == OpenACCClauseKind::Vector); in DiagGangWorkerVectorSeqConflict() 166 SemaRef.Diag(Clause.getBeginLoc(), diag::err_acc_clause_cannot_combine) in DiagGangWorkerVectorSeqConflict() 167 << Clause.getClauseKind() << (*Itr)->getClauseKind() in DiagGangWorkerVectorSeqConflict() 168 << Clause.getDirectiveKind(); in DiagGangWorkerVectorSeqConflict() 178 CheckModifierList(SemaOpenACC::OpenACCParsedClause &Clause, in CheckModifierList() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 350 auto *Clause = in Create() local 353 Clause->setLoopNumIterations(I, nullptr); in Create() 354 Clause->setLoopCounter(I, nullptr); in Create() 356 return Clause; in Create() 362 auto *Clause = new (Mem) OMPOrderedClause(NumLoops); in CreateEmpty() local 364 Clause->setLoopNumIterations(I, nullptr); in CreateEmpty() 365 Clause->setLoopCounter(I, nullptr); in CreateEmpty() 367 return Clause; in CreateEmpty() 408 auto *Clause = in Create() local 410 Clause->setLParenLoc(LParenLoc); in Create() [all …]
|
| H A D | StmtProfile.cpp | 2532 for (const OpenACCClause *Clause : Clauses) { in VisitOpenACCClauseList() local 2535 Visit(Clause); in VisitOpenACCClauseList() 2539 void VisitClauseWithVarList(const OpenACCClauseWithVarList &Clause) { in VisitClauseWithVarList() argument 2540 for (auto *E : Clause.getVarList()) in VisitClauseWithVarList() 2545 void Visit##CLAUSE_NAME##Clause(const OpenACC##CLAUSE_NAME##Clause &Clause); 2552 const OpenACCDefaultClause &Clause) {} in VisitDefaultClause() argument 2554 void OpenACCClauseProfiler::VisitIfClause(const OpenACCIfClause &Clause) { in VisitIfClause() argument 2555 assert(Clause.hasConditionExpr() && in VisitIfClause() 2557 Profiler.VisitStmt(Clause.getConditionExpr()); in VisitIfClause() 2560 void OpenACCClauseProfiler::VisitCopyClause(const OpenACCCopyClause &Clause) { in VisitCopyClause() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenACC/ |
| H A D | ACC.td | 35 def ACCC_Async : Clause<[Spelling<"async">]> { 41 def ACCC_Auto : Clause<[Spelling<"auto">]> {} 44 def ACCC_Attach : Clause<[Spelling<"attach">]> { 49 def ACCC_Bind : Clause<[Spelling<"bind">]> { 54 def ACCC_Capture : Clause<[Spelling<"capture">]> { 58 def ACCC_Collapse : Clause<[Spelling<"collapse">]> { 64 : Clause<[Spelling<"copy">, Spelling<"present_or_copy">, 70 def ACCC_Copyin : Clause<[Spelling<"copyin">, Spelling<"present_or_copyin">, 77 def ACCC_Copyout : Clause<[Spelling<"copyout">, Spelling<"present_or_copyout">, 84 def ACCC_Create : Clause<[Spelling<"create">, Spelling<"present_or_create">, [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 35 def OMPC_Absent : Clause<[Spelling<"absent">]> { 39 def OMPC_Acquire : Clause<[Spelling<"acquire">]> { 42 def OMPC_AcqRel : Clause<[Spelling<"acq_rel">]> { 45 def OMPC_AdjustArgs : Clause<[Spelling<"adjust_args">]> { 48 def OMPC_Affinity : Clause<[Spelling<"affinity">]> { 52 def OMPC_Align : Clause<[Spelling<"align">]> { 56 def OMPC_Aligned : Clause<[Spelling<"aligned">]> { 60 def OMPC_Allocate : Clause<[Spelling<"allocate">]> { 64 def OMPC_Allocator : Clause<[Spelling<"allocator">]> { 68 def OMPC_AppendArgs : Clause<[Spelling<"append_args">]> { [all …]
|
| H A D | ConstructDecompositionT.h | 140 ClauseTy *makeClause(llvm::omp::Clause clauseId, S &&specific) { in makeClause() 207 template <typename Clause> 208 bool applyClause(Clause &&clause, const ClauseTy *node); 546 llvm::omp::Clause::OMPC_shared, in applyClause() 588 llvm::omp::Clause::OMPC_shared, in applyClause() 598 return c->id == llvm::omp::Clause::OMPC_lastprivate; in applyClause() 613 llvm::omp::Clause::OMPC_firstprivate, in applyClause() 662 return c->id == llvm::omp::Clause::OMPC_firstprivate; in applyClause() 680 llvm::omp::Clause::OMPC_shared, in applyClause() 689 llvm::omp::Clause::OMPC_shared, in applyClause() [all …]
|
| H A D | OMP.h | 37 static constexpr inline bool canHaveIterator(Clause C) { in canHaveIterator() 52 static constexpr inline bool isPrivatizingClause(Clause C) { in isPrivatizingClause()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/HLSL/ |
| H A D | HLSLRootSignature.cpp | 165 raw_ostream &operator<<(raw_ostream &OS, const DescriptorTableClause &Clause) { in operator <<() argument 166 OS << Clause.Type << "(" << Clause.Reg << ", numDescriptors = "; in operator <<() 167 if (Clause.NumDescriptors == NumDescriptorsUnbounded) in operator <<() 170 OS << Clause.NumDescriptors; in operator <<() 171 OS << ", space = " << Clause.Space << ", offset = "; in operator <<() 172 if (Clause.Offset == DescriptorTableOffsetAppend) in operator <<() 175 OS << Clause.Offset; in operator <<() 176 OS << ", flags = " << Clause.Flags << ")"; in operator <<() 222 [&OS](const DescriptorTableClause &Clause) { OS << Clause; }, in operator <<() argument
|
| H A D | RootSignatureMetadata.cpp | 60 [this](const DescriptorTableClause &Clause) -> MDNode * { in BuildRootSignature() argument 61 return BuildDescriptorTableClause(Clause); in BuildRootSignature() 144 const DescriptorTableClause &Clause) { in BuildDescriptorTableClause() argument 147 getResourceName(dxil::ResourceClass(llvm::to_underlying(Clause.Type))); in BuildDescriptorTableClause() 151 ConstantAsMetadata::get(Builder.getInt32(Clause.NumDescriptors)), in BuildDescriptorTableClause() 152 ConstantAsMetadata::get(Builder.getInt32(Clause.Reg.Number)), in BuildDescriptorTableClause() 153 ConstantAsMetadata::get(Builder.getInt32(Clause.Space)), in BuildDescriptorTableClause() 154 ConstantAsMetadata::get(Builder.getInt32(Clause.Offset)), in BuildDescriptorTableClause() 156 Builder.getInt32(llvm::to_underlying(Clause.Flags))), in BuildDescriptorTableClause()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | DirectiveEmitter.cpp | 169 Clause C(R); in generateClauseEnumVal() 492 for (const Clause C : DirLang.getClauses()) { in generateGetClauseVal() 937 Clause C = VerClause.getClause(); in generateClauseSet() 1051 for (const Clause Clause : DirLang.getClauses()) { in generateFlangClauseParserClass() local 1052 if (!Clause.getFlangClass().empty()) { in generateFlangClauseParserClass() 1053 OS << "WRAPPER_CLASS(" << Clause.getFormattedParserClassName() << ", "; in generateFlangClauseParserClass() 1054 if (Clause.isValueOptional() && Clause.isValueList()) { in generateFlangClauseParserClass() 1055 OS << "std::optional<std::list<" << Clause.getFlangClass() << ">>"; in generateFlangClauseParserClass() 1056 } else if (Clause.isValueOptional()) { in generateFlangClauseParserClass() 1057 OS << "std::optional<" << Clause.getFlangClass() << ">"; in generateFlangClauseParserClass() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaConcept.h | 179 using Clause = llvm::SmallVector<Literal>; variable 180 using Formula = llvm::SmallVector<Clause, 5>; 228 bool DNFSubsumes(const Clause &P, const Clause &Q); 235 void AddUniqueClauseToFormula(Formula &F, Clause C);
|
| /freebsd/sys/dev/mdio/ |
| H A D | mdio_if.m | 94 * @param devad The MDIO IEEE 802.3 Clause 45 device address, or 95 * MDIO_DEVADDR_NONE to request Clause 22 register addressing. 111 * @param devad The MDIO IEEE 802.3 Clause 45 device address, or 112 * MDIO_DEVADDR_NONE to request Clause 22 register addressing.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600ControlFlowFinalizer.cpp | 437 const DebugLoc &DL, ClauseFile &Clause, in EmitFetchClause() argument 439 CounterPropagateAddr(*Clause.first, CfCount); in EmitFetchClause() 440 MachineBasicBlock *BB = Clause.first->getParent(); in EmitFetchClause() 442 for (MachineInstr *MI : Clause.second) in EmitFetchClause() 444 CfCount += 2 * Clause.second.size(); in EmitFetchClause() 448 ClauseFile &Clause, unsigned &CfCount) { in EmitALUClause() argument 449 Clause.first->getOperand(0).setImm(0); in EmitALUClause() 450 CounterPropagateAddr(*Clause.first, CfCount); in EmitALUClause() 451 MachineBasicBlock *BB = Clause.first->getParent(); in EmitALUClause() 453 for (MachineInstr *MI : Clause.second) in EmitALUClause() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | WatchedLiteralsSolver.cpp | 324 llvm::ArrayRef<Literal> Clause = CNF.clauseLiterals(LitWatcher); in watchedByUnitClause() local 331 assert(Clause.front() == Lit); in watchedByUnitClause() 333 if (isUnit(Clause)) in watchedByUnitClause() 340 bool isUnit(llvm::ArrayRef<Literal> Clause) const { in isUnit() 341 return llvm::all_of(Clause.drop_front(), in isUnit()
|
| /freebsd/sys/contrib/device-tree/Bindings/net/ |
| H A D | cortina.txt | 8 devices make use of registers that are not compatible with Clause 45 or 9 Clause 22, therefore they need to be described using the
|
| /freebsd/contrib/xz/ |
| H A D | COPYING | 8 - liblzma is under the BSD Zero Clause License (0BSD). 32 the BSD Zero Clause License (0BSD). 49 For the files under the BSD Zero Clause License (0BSD), if 63 - COPYING.0BSD: BSD Zero Clause License
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | DirectiveEmitter.h | 280 class Clause : public BaseRecord { 282 Clause(const Record *Def) : BaseRecord(Def) {} in Clause() function 357 Clause getClause() const { return Clause(Def->getValueAsDef("clause")); } in getClause()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseHLSLRootSignature.cpp | 298 auto Clause = parseDescriptorTableClause(); in parseDescriptorTable() local 299 if (!Clause.has_value()) { in parseDescriptorTable() 306 Elements.emplace_back(ElementLoc, *Clause); in parseDescriptorTable() 358 DescriptorTableClause Clause; in parseDescriptorTableClause() local 364 Clause.Type = ClauseType::CBuffer; in parseDescriptorTableClause() 368 Clause.Type = ClauseType::SRV; in parseDescriptorTableClause() 372 Clause.Type = ClauseType::UAV; in parseDescriptorTableClause() 376 Clause.Type = ClauseType::Sampler; in parseDescriptorTableClause() 380 Clause.setDefaultFlags(Version); in parseDescriptorTableClause() 396 Clause.Reg = Params->Reg.value(); in parseDescriptorTableClause() [all …]
|
| H A D | ParseOpenMP.cpp | 482 OMPClause *Clause = in ParseOpenMPDeclareMapperDirective() local 484 if (Clause) in ParseOpenMPDeclareMapperDirective() 485 Clauses.push_back(Clause); in ParseOpenMPDeclareMapperDirective() 1601 OMPClause *Clause = in ParseOpenMPClauses() local 1606 if (Clause != nullptr) in ParseOpenMPClauses() 1607 Clauses.push_back(Clause); in ParseOpenMPClauses() 2025 OMPClause *Clause = ParseOpenMPClause(OMPD_allocate, CKind, in ParseOpenMPDeclarativeDirectiveWithExtDecl() local 2030 if (Clause != nullptr) in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2031 Clauses.push_back(Clause); in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2064 OMPClause *Clause = ParseOpenMPClause(OMPD_requires, CKind, in ParseOpenMPDeclarativeDirectiveWithExtDecl() local [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenACCClause.h | 1276 for (const OpenACCClause *Clause : List) in VisitClauseList() local 1277 Visit(Clause); in VisitClauseList() 1287 getDerived().Visit##CLAUSE_NAME##Clause( \ in Visit() 1288 *cast<OpenACC##CLAUSE_NAME##Clause>(C)); \ in Visit() 1292 getDerived().Visit##CLAUSE_NAME##Clause( \ in Visit() 1293 *cast<OpenACC##CLAUSE_NAME##Clause>(C)); \ in Visit() 1304 void Visit##CLAUSE_NAME##Clause( \ 1305 const OpenACC##CLAUSE_NAME##Clause &Clause) { \ 1306 return getDerived().VisitClause(Clause); \ 1321 for (const OpenACCClause *Clause : List) { in VisitClauseList() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinException.cpp | 1252 for (ClrClause &Clause : Clauses) { in emitCLRExceptionTable() 1302 getOffsetPlusOne(Clause.StartLabel, FuncBeginSym); in emitCLRExceptionTable() 1303 const MCExpr *ClauseEnd = getOffsetPlusOne(Clause.EndLabel, FuncBeginSym); in emitCLRExceptionTable() 1305 const ClrEHUnwindMapEntry &Entry = FuncInfo.ClrEHUnwindMap[Clause.State]; in emitCLRExceptionTable() 1309 MCSymbol *EndSym = EndSymbolMap[Clause.State]; in emitCLRExceptionTable() 1327 if (Clause.EnclosingState != MinClauseMap[Clause.State]) { in emitCLRExceptionTable() 1330 assert(Clause.EnclosingState > MinClauseMap[Clause.State]); in emitCLRExceptionTable()
|
| /freebsd/sys/contrib/device-tree/src/arm64/nvidia/ |
| H A D | tegra264-p3971.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
| H A D | tegra264-p3971-0089.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
| /freebsd/sys/contrib/device-tree/src/arm/st/ |
| H A D | stm32h750.dtsi | 1 /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */
|
| /freebsd/packages/dhclient/ |
| H A D | Makefile | 3 PKG_LICENSES= BSD-3-Clause
|