| /src/sys/arm/conf/ |
| H A D | ARMADA38X | 20 options SCHED_ULE # ULE scheduler
|
| H A D | ARMADAXP | 29 options SCHED_ULE # ULE scheduler
|
| H A D | ZEDBOARD | 28 options SCHED_ULE # ULE scheduler
|
| H A D | TEGRA124 | 25 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC | 61 options SCHED_ULE # ULE scheduler
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 13489 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() argument 13512 if (ULE->requiresADL()) { in AddOverloadedCallCandidates() 13513 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 13514 E = ULE->decls_end(); I != E; ++I) { in AddOverloadedCallCandidates() 13526 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates() 13527 ULE->copyTemplateArgumentsInto(TABuffer); in AddOverloadedCallCandidates() 13531 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 13532 E = ULE->decls_end(); I != E; ++I) in AddOverloadedCallCandidates() 13537 if (ULE->requiresADL()) in AddOverloadedCallCandidates() 13538 AddArgumentDependentLookupCandidates(ULE->getName(), ULE->getExprLoc(), in AddOverloadedCallCandidates() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 1316 UnresolvedLookupExpr *ULE = nullptr; in ActOnCXXFoldExpr() local 1328 ULE = cast<UnresolvedLookupExpr>(Callee.get()); in ActOnCXXFoldExpr() 1332 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
|
| H A D | Sema.cpp | 2642 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in IsCPUDispatchCPUSpecificMultiVersion() local 2643 if (ULE->getNumDecls() == 0) in IsCPUDispatchCPUSpecificMultiVersion() 2646 const NamedDecl *ND = *ULE->decls_begin(); in IsCPUDispatchCPUSpecificMultiVersion()
|
| H A D | TreeTransform.h | 3998 ExprResult RebuildCXXFoldExpr(UnresolvedLookupExpr *ULE, in RebuildCXXFoldExpr() argument 4004 return getSema().BuildCXXFoldExpr(ULE, LParenLoc, LHS, Operator, in RebuildCXXFoldExpr() 10533 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() local 10535 for (auto *D : ULE->decls()) { in TransformOMPReductionClause() 10580 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPTaskReductionClause() local 10582 for (auto *D : ULE->decls()) { in TransformOMPTaskReductionClause() 10626 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPInReductionClause() local 10628 for (auto *D : ULE->decls()) { in TransformOMPInReductionClause() 10808 auto *ULE = cast<UnresolvedLookupExpr>(E); in transformOMPMappableExprListClause() local 10810 for (auto *D : ULE->decls()) { in transformOMPMappableExprListClause() [all …]
|
| H A D | SemaExpr.cpp | 3188 UnresolvedLookupExpr *ULE = UnresolvedLookupExpr::Create( in BuildDeclarationNameExpr() local 3193 return ULE; in BuildDeclarationNameExpr() 6380 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn); in ActOnCallExpr() local 6381 ULE && ULE->hasExplicitTemplateArgs() && in ActOnCallExpr() 6382 ULE->decls_begin() == ULE->decls_end()) { in ActOnCallExpr() 6386 << ULE->getName(); in ActOnCallExpr() 6486 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in BuildCallExpr() local 6488 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, in BuildCallExpr() 15536 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess() local 15537 if (!ULE->getQualifier()) in isQualifiedMemberAccess() [all …]
|
| /src/sys/arm64/conf/ |
| H A D | std.arm64 | 7 options SCHED_ULE # ULE scheduler
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 1454 const UnresolvedLookupExpr *ULE) { in VisitUnresolvedLookupExpr() argument 1455 JOS.attribute("usesADL", ULE->requiresADL()); in VisitUnresolvedLookupExpr() 1456 JOS.attribute("name", ULE->getName().getAsString()); in VisitUnresolvedLookupExpr() 1458 JOS.attributeArray("lookups", [this, ULE] { in VisitUnresolvedLookupExpr() 1459 for (const NamedDecl *D : ULE->decls()) in VisitUnresolvedLookupExpr()
|
| H A D | ItaniumMangle.cpp | 5022 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local 5023 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), in mangleExpression() 5024 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), in mangleExpression()
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 4093 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingResults() local 4094 return ULE->getTrailingObjects<DeclAccessPair>(); in getTrailingResults() 4102 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() local 4103 return ULE->getTrailingObjects<ASTTemplateKWAndArgsInfo>(); in getTrailingASTTemplateKWAndArgsInfo() 4109 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingTemplateArgumentLoc() local 4110 return ULE->getTrailingObjects<TemplateArgumentLoc>(); in getTrailingTemplateArgumentLoc() 4116 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getNamingClass() local 4117 return ULE->getNamingClass(); in getNamingClass()
|
| H A D | JSONNodeDumper.h | 300 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *ULE);
|
| /src/sys/amd64/conf/ |
| H A D | MINIMAL | 36 options SCHED_ULE # ULE scheduler
|
| H A D | FIRECRACKER | 25 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC | 26 options SCHED_ULE # ULE scheduler
|
| /src/sys/i386/conf/ |
| H A D | MINIMAL | 44 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC | 30 options SCHED_ULE # ULE scheduler
|
| /src/ |
| H A D | RELNOTES | 45 It is now possible to compile both the 4BSD and ULE schedulers into the
|
| /src/sys/riscv/conf/ |
| H A D | GENERIC | 26 options SCHED_ULE # ULE scheduler
|
| /src/sys/powerpc/conf/ |
| H A D | GENERIC | 35 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC64 | 37 options SCHED_ULE # ULE scheduler
|
| H A D | GENERIC64LE | 36 options SCHED_ULE # ULE scheduler
|