/freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 54 /// This is a basic class for representing single OpenMP clause. 56 /// Starting location of the clause (the clause keyword). 59 /// Ending location of the clause. 62 /// Kind of the clause. 70 /// Returns the starting location of the clause. 73 /// Returns the ending location of the clause. 76 /// Sets the starting location of the clause. 79 /// Sets the ending location of the clause. 82 /// Returns kind of OpenMP clause (privat [all...] |
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | OpenACCKinds.h | 163 /// Represents the kind of an OpenACC clause. 165 /// 'finalize' clause, allowed on 'exit data' directive. 167 /// 'if_present' clause, allowed on 'host_data' and 'update' directives. 169 /// 'seq' clause, allowed on 'loop' and 'routine' directives. 171 /// 'independent' clause, allowed on 'loop' directives. 173 /// 'auto' clause, allowed on 'loop' directives. 175 /// 'worker' clause, allowed on 'loop', Combined, and 'routine' directives. 177 /// 'vector' clause, allowed on 'loop', Combined, and 'routine' directives. 179 /// 'nohost' clause, allowed on 'routine' directives. 181 /// 'default' clause, allowe [all...] |
H A D | OpenMPKinds.def | 90 // Static attributes for 'schedule' clause. 97 // Modifiers for 'schedule' clause. 102 // Modifiers for 'device' clause. 106 // Static attributes for 'defaultmap' clause. 111 // Modifiers for 'defaultmap' clause. 121 // Static attributes for 'depend' clause. 133 // Modifiers for 'linear' clause. 139 // Modifiers for 'atomic_default_mem_order' clause. 144 // Modifiers for atomic 'fail' clause. 149 // Modifiers for 'at' clause. [all …]
|
H A D | OpenMPKinds.h | 27 using OpenMPClauseKind = llvm::omp::Clause; 29 /// OpenMP attributes for 'schedule' clause. 37 /// OpenMP modifiers for 'schedule' clause. 46 /// OpenMP modifiers for 'device' clause. 53 /// OpenMP attributes for 'depend' clause. 61 /// OpenMP attributes for 'linear' clause. 69 /// OpenMP mapping kind for 'map' clause. 77 /// OpenMP modifier kind for 'map' clause. 90 /// OpenMP modifier kind for 'to' or 'from' clause. 102 /// OpenMP attributes for 'dist_schedule' clause [all...] |
/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DirectiveEmitter.cpp | 87 Clause C{R}; in GenerateEnumClauseVal() 94 PrintError("enumClauseValue field not set in Clause" + in GenerateEnumClauseVal() 135 PrintError("Clause " + VerClause.getClause().getRecordName() + 239 // Emit Clause enumeration in EmitDirectivesDecl() 240 GenerateEnumClass(DirLang.getClauses(), OS, "Clause", in EmitDirectivesDecl() 257 OS << "Clause get" << DirLang.getName() in GenerateGetName() 260 OS << "llvm::StringRef get" << DirLang.getName() << "ClauseName(Clause C);\n"; in GenerateGetName() 262 OS << "/// Return true if \\p C is a valid clause for \\p D in version \\p " in GenerateGetName() 265 << "Clause C, unsigned Version);\n"; in GenerateGetName() 349 Clause in GenerateGetKindClauseVal() 541 Clause Clause{C}; GenerateFlangClauseParserClass() local 568 Clause Clause{C}; GenerateFlangClauseParserClassList() local 581 Clause Clause{C}; GenerateFlangClauseDump() local 597 Clause Clause{C}; GenerateFlangClauseUnparse() local 648 Clause Clause{C}; GenerateFlangClauseCheckPrototypes() local 663 Clause Clause{C}; GenerateFlangClauseParserKindMap() local 696 Clause Clause{C}; GenerateFlangClausesParser() local [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/ |
H A D | DirectiveBase.td | 32 // Optional prefix used for the generation of the enumerator in the Clause 56 // Name of the clause value. 59 // Integer value of the clause. 65 // Set clause value used by default when unknown. 69 // Information about a specific clause. 70 class Clause<string c> { 71 // Name of the clause. 80 // Optional class holding value of the clause in clang AST. 83 // Optional class holding value of the clause in flang AST. 89 // Name of enum when there is a list of allowed clause value [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/OpenACC/ |
H A D | ACC.td | 35 def ACCC_Async : Clause<"async"> { 41 def ACCC_Auto : Clause<"auto"> {} 44 def ACCC_Attach : Clause<"attach"> { 49 def ACCC_Bind : Clause<"bind"> { 54 def ACCC_Capture : Clause<"capture"> { 58 def ACCC_Collapse : Clause<"collapse"> { 63 def ACCC_Copy : Clause<"copy"> { 69 def ACCC_Copyin : Clause<"copyin"> { 75 def ACCC_Copyout : Clause<"copyout"> { 81 def ACCC_Create : Clause<"creat [all...] |
/freebsd-src/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_sugar.c | 23 * compiler / the kernel. A clause containing these language features is 24 * referred to as a "super-clause", and its transformation typically entails 30 * statements before and after) is turned into its own sub-clause, with a 85 * Append this clause to the clause list. 88 dt_sugar_append_clause(dt_sugar_parse_t *dp, dt_node_t *clause) in dt_sugar_append_clause() argument 90 dp->dtsp_clause_list = dt_node_link(dp->dtsp_clause_list, clause); in dt_sugar_append_clause() 94 * Prepend this clause to the clause list. 97 dt_sugar_prepend_clause(dt_sugar_parse_t *dp, dt_node_t *clause) in dt_sugar_prepend_clause() argument 99 dp->dtsp_clause_list = dt_node_link(clause, dp->dtsp_clause_list); in dt_sugar_prepend_clause() 123 * Return new clause to evaluate predicate and set newcond. condid is [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 289 /// clause as the preinitializer. 349 auto *Clause = in Create() local 352 Clause->setLoopNumIterations(I, nullptr); in Create() 353 Clause->setLoopCounter(I, nullptr); in Create() 355 return Clause; in Create() 361 auto *Clause = new (Mem) OMPOrderedClause(NumLoops); in CreateEmpty() local 363 Clause->setLoopNumIterations(I, nullptr); in CreateEmpty() 364 Clause->setLoopCounter(I, nullptr); in CreateEmpty() 366 return Clause; in CreateEmpty() 407 auto *Clause in Create() local 422 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); CreateEmpty() local 439 OMPPrivateClause *Clause = Create() local 470 OMPFirstprivateClause *Clause = Create() local 520 OMPLastprivateClause *Clause = new (Mem) OMPLastprivateClause( Create() local 543 OMPSharedClause *Clause = Create() local 596 OMPLinearClause *Clause = Create() local 637 OMPAlignedClause *Clause = new (Mem) Create() local 684 OMPCopyinClause *Clause = Create() local 725 OMPCopyprivateClause *Clause = Create() local 804 auto *Clause = new (Mem) Create() local 834 auto *Clause = new (Mem) OMPReductionClause(N); CreateEmpty() local 874 OMPTaskReductionClause *Clause = new (Mem) OMPTaskReductionClause( Create() local 936 OMPInReductionClause *Clause = new (Mem) OMPInReductionClause( Create() local 960 OMPSizesClause *Clause = CreateEmpty(C, Sizes.size()); Create() local 977 OMPFullClause *Clause = CreateEmpty(C); Create() local 992 OMPPartialClause *Clause = CreateEmpty(C); Create() local 1011 auto *Clause = new (Mem) OMPAllocateClause(StartLoc, LParenLoc, Allocator, Create() local 1029 OMPFlushClause *Clause = Create() local 1045 auto *Clause = new (C) OMPDepobjClause(StartLoc, LParenLoc, RParenLoc); Create() local 1062 OMPDependClause *Clause = new (Mem) Create() local 1170 OMPMapClause *Clause = new (Mem) Create() local 1192 OMPMapClause *Clause = new (Mem) OMPMapClause(Sizes); CreateEmpty() local 1227 auto *Clause = new (Mem) OMPToClause(MotionModifiers, MotionModifiersLoc, Create() local 1277 auto *Clause = Create() local 1339 OMPUseDevicePtrClause *Clause = new (Mem) OMPUseDevicePtrClause(Locs, Sizes); Create() local 1388 auto *Clause = new (Mem) OMPUseDeviceAddrClause(Locs, Sizes); Create() local 1435 OMPIsDevicePtrClause *Clause = new (Mem) OMPIsDevicePtrClause(Locs, Sizes); Create() local 1482 auto *Clause = new (Mem) OMPHasDeviceAddrClause(Locs, Sizes); Create() local 1508 auto *Clause = Create() local 1532 auto *Clause = Create() local 1550 auto *Clause = Create() local 1612 auto *Clause = new (Mem) Create() local 1632 auto *Clause = new (Mem) Create() local 1654 auto *Clause = new (Mem) OMPInitClause( Create() local 1686 OMPDoacrossClause *Clause = new (Mem) Create() local [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 32 // Sorted alphabetically wrt clause spelling. 35 def OMPC_Acquire : Clause<"acquire"> { 38 def OMPC_AcqRel : Clause<"acq_rel"> { 41 def OMPC_AdjustArgs : Clause<"adjust_args"> { 43 def OMPC_Affinity : Clause<"affinity"> { 46 def OMPC_Align : Clause<"align"> { 49 def OMPC_Aligned : Clause<"aligned"> { 53 def OMPC_Allocate : Clause<"allocate"> { 57 def OMPC_Allocator : Clause<"allocator"> { 61 def OMPC_AppendArgs : Clause<"append_arg [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseOpenMP.cpp | 536 /// <type> <var> ')' [<clause>[[,] <clause>] ... ] in ParseOpenMPDeclareMapperDirective() 616 OMPClause *Clause = in ParseOpenMPDeclareMapperDirective() 618 if (Clause) in ParseOpenMPDeclareMapperDirective() 619 Clauses.push_back(Clause); in ParseOpenMPDeclareMapperDirective() 715 /// clause: in parseDeclareSimdClauses() 1390 /// Parse clauses for '#pragma omp declare variant ( variant-func-id ) clause'. in ParseOMPDeclareVariantClauses() 1434 // At least one clause is required. in ParseOMPDeclareVariantClauses() 1484 llvm_unreachable("Unexpected clause for declare variant."); in ParseOMPDeclareVariantClauses() 1639 /// <clause> [claus in ParseOpenMPClauses() 607 OMPClause *Clause = ParseOpenMPDeclareMapperDirective() local 1646 OMPClause *Clause = ParseOpenMPClause( ParseOpenMPClauses() local 2113 OMPClause *Clause = ParseOpenMPClause( ParseOpenMPDeclarativeDirectiveWithExtDecl() local 2154 OMPClause *Clause = ParseOpenMPClause( ParseOpenMPDeclarativeDirectiveWithExtDecl() local 2714 OMPClause *Clause = ParseOpenMPClause( ParseOpenMPDeclarativeOrExecutableDirective() local 2914 OMPClause *Clause = ParseOpenMPClause( ParseOpenMPDeclarativeOrExecutableDirective() local 3178 OMPClause *Clause = nullptr; ParseOpenMPClause() local [all...] |
H A D | ParseOpenACC.cpp | 74 // Translate single-token string representations to the OpenCC Clause Kind. in getOpenACCClauseKind() 374 // this oddly look like a clause. in ParseOpenACCAtomicKind() 402 // this as a clause list, which, despite being invalid, is likely what the in ParseOpenACCDirectiveKind() 453 // clause. 460 // a clause. in getClauseParensKind() 545 llvm_unreachable("Unhandled clause kind"); in ParseOpenACCClauseList() 607 Parser::OpenACCClauseParseResult Parser::OpenACCSuccess(OpenACCClause *Clause) { in ParseOpenACCDeviceTypeList() 608 return {Clause, OpenACCParseCanContinue::Can}; in ParseOpenACCDeviceTypeList() 631 // clause-list, which is a list of one or more clauses optionally separated by in ParseOpenACCClause() 638 // Comma is optional in a clause in ParseOpenACCClause() [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertHardClauses.cpp | 20 /// instruction to mark the start of each clause. 26 /// hard clause. (Before gfx10 there wasn't a distinction, and both were called 82 // Internal instructions, which are allowed in the middle of a hard clause, 87 // Instructions that are not allowed in a hard clause: SALU, export, branch, 158 // Track information about a clause as we discover it. in getHardClauseType() 160 // The type of all (non-internal) instructions in the clause. in getHardClauseType() 162 // The first (necessarily non-internal) instruction in the clause. 164 // The last non-internal instruction in the clause. 166 // The length of the clause including any internal instructions in the 167 // middle (but not at the end) of the clause [all...] |
H A D | R600EmitClauseMarkers.cpp | 10 /// Add CF_ALU. R600 Alu instructions are grouped in clause which can hold 190 // Def defines a clause local register, so check that its use will fit in canClauseLocalKillFitInClause() 191 // in the clause. in canClauseLocalKillFitInClause() 195 // Make sure we won't need to end the clause due to KCache limitations. in canClauseLocalKillFitInClause() 201 // current clause. in canClauseLocalKillFitInClause() 220 llvm_unreachable("Clause local register live at end of clause."); in canClauseLocalKillFitInClause() 239 // We put PRED_X in its own clause to ensure that ifcvt won't create in MakeALUClause() 244 // clause as predicated alus). in MakeALUClause() 252 // XXX: GROUP_BARRIER instructions cannot be in the same ALU clause a in MakeALUClause() [all...] |
H A D | SIFormMemoryClauses.cpp | 11 /// load that would overwrite a pointer would require breaking the soft clause. 13 /// implicit-def early-clobber operands throughout the soft clause. 29 MaxClause("amdgpu-max-memory-clause", cl::Hidden, cl::init(15), 30 cl::desc("Maximum length of a memory clause, instructions")); 119 // If this is a load instruction where the result has been coalesced with an operand, then we cannot clause it. in isValidClauseInst() 149 // In this case we must break the clause. 184 // Since all defs in the clause are early clobber we can run out of registers. 186 // bundled into a memory clause. 191 // clause. Therefor we should not decrease pressure even if load in checkPressure() 198 // spilling just to form a soft clause in checkPressure() [all...] |
/freebsd-src/crypto/openssl/doc/man7/ |
H A D | property.pod | 63 A I<property query clause> is a single conditional test. 67 The third clause represents an optional clause. 72 It is an error if a property name appears in more than one query clause. 88 B<?> is a prefix operator that means that the following clause is optional 93 B<-> is a prefix operator that means any global query clause involving the 130 Where both the context and local queries include a clause with the same name, 131 the local clause overrides the context clause. 133 It is possible for a local property query to remove a clause in the context 140 clause "-fips".
|
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | WatchedLiteralsSolver.cpp | 41 /// Maps literals (indices of the vector) to clause identifiers (elements of 44 /// For a given clause, its watched literal is always its first literal in 48 /// Maps clause identifiers (elements of the vector) to identifiers of other 51 /// The element at index 0 stands for the identifier of the clause that 52 /// follows the null clause. It is set to 0 and isn't used. Identifiers of 123 // Designate the first literal as the "watched" literal of the clause. 196 // We found a unit clause! The value of its unassigned variable is 301 // the clause. in buildCNF() 305 // If the new watched literal isn't watched by any other clause and its in buildCNF() 314 // Go to the next clause tha in buildCNF() 702 llvm::ArrayRef<Literal> Clause = CNF.clauseLiterals(LitWatcher); watchedByUnitClause() local [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/Basic/ |
H A D | OpenMPKinds.cpp | 108 return static_cast<unsigned int>(llvm::StringSwitch<llvm::omp::Clause>(Str) in getOpenMPSimpleClauseType() 249 llvm_unreachable("Invalid OpenMP simple clause kind"); in getOpenMPSimpleClauseType() 262 llvm_unreachable("Invalid OpenMP 'default' clause type"); in getOpenMPSimpleClauseTypeName() 270 llvm_unreachable("Invalid OpenMP 'proc_bind' clause type"); in getOpenMPSimpleClauseTypeName() 284 llvm_unreachable("Invalid OpenMP 'schedule' clause type"); in getOpenMPSimpleClauseTypeName() 294 llvm_unreachable("Invalid OpenMP 'depend' clause type"); in getOpenMPSimpleClauseTypeName() 304 llvm_unreachable("Invalid OpenMP 'doacross' clause type"); in getOpenMPSimpleClauseTypeName() 314 llvm_unreachable("Invalid OpenMP 'linear' clause type"); in getOpenMPSimpleClauseTypeName() 330 llvm_unreachable("Invalid OpenMP 'map' clause type"); in getOpenMPSimpleClauseTypeName() 343 llvm_unreachable("Invalid OpenMP 'to' or 'from' clause typ in getOpenMPSimpleClauseTypeName() [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | DirectiveEmitter.h | 67 return Records.getAllDerivedDefinitions("Clause"); 81 // Base record class used for Directive and Clause class defined in in getAlternativeName() 142 // Wrapper class that contains Clause's information defined in DirectiveBase.td 144 class Clause : public BaseRecord { 146 explicit Clause(const llvm::Record *Def) : BaseRecord(Def) {} 216 // Return the specific clause record wrapped in the Clause class. 217 Clause getClause() const { return Clause{Def->getValueAsDef("clause")}; } in isUserVisible() 130 explicit Clause(const llvm::Record *Def) : BaseRecord(Def) {} Clause() function [all...] |
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.h | 329 /// An outlined function may not be an entry if, e.g. the if clause always 639 /// clause associated with a teams construct combined or closely nested 655 /// if-clause), store the condition in \p CondExpr. Similarly, a potential 700 /// Emits code for OpenMP 'if' clause using specified \a CodeGen 794 /// \param IfCond Condition in the associated 'if' clause, if it was 796 /// \param NumThreads The value corresponding to the num_threads clause, if 808 /// \param Hint Value of the 'hint' clause (optional). 877 /// \param ScheduleKind Schedule kind specified in the 'schedule' clause. 878 /// \param Chunked True if chunk is specified in the clause. 885 /// \param ScheduleKind Schedule kind specified in the 'dist_schedule' clause [all...] |
/freebsd-src/contrib/unifdef/ |
H A D | COPYING | 4 All files in this package are distributed under the two-clause BSD 7 a three-clause BSD copyright licence. 11 version of unifdef.c carried the four-clause BSD copyright licence. 13 remain) so it now carries the more liberal two-clause licence. 28 The two-clause BSD copyright licence applying to all the above files is: 51 The three-clause BSD copyright licence for the manual page unifdef.1 53 advertising clause that used to appear between clauses 2 and 3 was
|
/freebsd-src/secure/lib/libcrypto/man/man7/ |
H A D | property.7 | 195 A \fIproperty query clause\fR is a single conditional test. 199 The third clause represents an optional clause. 204 It is an error if a property name appears in more than one query clause. 212 \&\fB?\fR is a prefix operator that means that the following clause is optional 215 \&\fB\-\fR is a prefix operator that means any global query clause involving the 243 Where both the context and local queries include a clause with the same name, 244 the local clause overrides the context clause. 246 It is possible for a local property query to remove a clause in the context 253 clause \*(L"\-fips\*(R".
|
/freebsd-src/contrib/googletest/docs/reference/ |
H A D | mocking.md | 89 See details for each modifier clause below. 118 The `With` clause can be used at most once on an expectation and must be the 119 first clause. 138 If the `Times` clause is omitted, GoogleTest infers the cardinality as follows: 143 * If there are *n* `WillOnce` clauses and no `WillRepeatedly` clause, where 145 * If there are *n* `WillOnce` clauses and one `WillRepeatedly` clause, where 148 The `Times` clause can be used at most once on an expectation. 176 The `InSequence` clause can be used any number of times on an expectation. 219 The `After` clause can be used any number of times on an expectation. 250 The `WillOnce` clause ca [all...] |
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_bridge/ |
H A D | BRIDGE-MIB.txt | 205 "IEEE 802.1D-1998: clause 14.4.1.1.3" 245 "IEEE 802.1D-1998: clause 14.4.2, 14.6.1" 311 "IEEE 802.1D-1998: clause 14.6.1.1.3" 323 "IEEE 802.1D-1998: clause 14.6.1.1.3" 363 "IEEE 802.1D-1998 clause 8.10.2, Table 8-4, 364 IEEE 802.1t clause 8.10.2, Table 8-4, clause 14.3." 379 "IEEE 802.1D-1998 clause 14.8.1.1., 380 IEEE 802.1w clause 14.8.1.1." 392 "IEEE 802.1D-1998 clause 14.8.1.1." 406 "IEEE 802.1D-1998: clause 8.5.3.1" [all …]
|
H A D | RSTP-MIB.txt | 78 clause 17 of 802.1D-2004. The values are directly from 85 "IEEE 802.1w clause 14.8.1, 17.12, 17.16.1" 101 "IEEE 802.1w clause 17.16.6" 156 "IEEE 802.1w clause 14.8.2.4, 17.18.10, 17.26" 179 "IEEE 802.1t clause 14.8.2, 18.3.3" 195 "IEEE 802.1t clause 14.8.2, 18.3.4" 209 IEEE 802.1w clause. A value of forceTrue(0) indicates 225 "IEEE 802.1w clause 6.4.3, 6.5, 14.8.2" 239 as defined in IEEE 802.1w, clause 6.5. The value is 245 "IEEE 802.1w clause 6.4.3, 6.5, 14.8.2"
|