Home
last modified time | relevance | path

Searched refs:Conditions (Results 1 – 25 of 55) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp56 ConditionVectorTy Conditions; member in __anon5afc32ae0111::ControlConditions
71 bool isUnconditional() const { return Conditions.empty(); } in isUnconditional()
74 const ConditionVectorTy &getControlConditions() const { return Conditions; } in getControlConditions()
113 ControlConditions Conditions; in collectControlConditions() local
118 return Conditions; in collectControlConditions()
143 Inserted = Conditions.addControlCondition( in collectControlConditions()
149 Inserted = Conditions.addControlCondition( in collectControlConditions()
163 return Conditions; in collectControlConditions()
168 if (none_of(Conditions, [&](ControlCondition &Exists) { in addControlCondition()
171 Conditions.push_back(C); in addControlCondition()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DCallSiteSplitting.cpp132 ConditionsTy &Conditions) { in recordCondition() argument
145 Conditions.push_back({Cmp, From->getTerminator()->getSuccessor(0) == To in recordCondition()
155 ConditionsTy &Conditions, BasicBlock *StopAt) { in recordConditions() argument
161 recordCondition(CB, From, To, Conditions); in recordConditions()
167 static void addConditions(CallBase &CB, const ConditionsTy &Conditions) { in addConditions() argument
168 for (auto &Cond : Conditions) { in addConditions()
471 ConditionsTy Conditions; in shouldSplitOnPredicatedArgument() local
473 recordCondition(CB, Pred, CB.getParent(), Conditions); in shouldSplitOnPredicatedArgument()
475 recordConditions(CB, Pred, Conditions, StopAt); in shouldSplitOnPredicatedArgument()
476 PredsCS.push_back({Pred, Conditions}); in shouldSplitOnPredicatedArgument()
H A DStructurizeCFG.cpp259 BranchVector Conditions; member in __anondb40fec20111::StructurizeCFG
545 BranchVector &Conds = Loops ? LoopConds : Conditions; in insertConditions()
834 Conditions.push_back(BranchInst::Create(Entry, Next, BoolUndef, Flow)); in wireFlow()
901 Conditions.clear(); in createFlow()
1078 Conditions.clear(); in run()
/netbsd-src/external/bsd/flex/dist/doc/
H A Dflex.info-256 * BEGIN: Start Conditions. (line 84)
107 * yy_pop_state: Start Conditions. (line 295)
108 * yy_push_state: Start Conditions. (line 289)
119 * yy_top_state: Start Conditions. (line 298)
133 * INITIAL: Start Conditions. (line 84)
150 * YY_START: Start Conditions. (line 191)
H A Dflex.info-169 * Start Conditions::
745 Conditions:: for discussion of start conditions).
1196 File: flex.info, Node: Generated Scanner, Next: Start Conditions, Prev: Actions, Up: Top
1250 (*note Start Conditions::).
1301 File: flex.info, Node: Start Conditions, Next: Multiple Input Buffers, Prev: Generated Scanner, …
1303 10 Start Conditions
1608 File: flex.info, Node: Multiple Input Buffers, Next: EOF, Prev: Start Conditions, Up: Top
2253 Conditions::).
5616 > In GNU Info, under the section 'Start Conditions', and also in the man
7472 * BEGIN, explanation: Start Conditions. (line 84)
[all …]
H A Dflex.info66 Node: Start Conditions49136
H A Dflex.texi92 * Start Conditions::
829 Conditions} for discussion of start conditions).
1458 @node Generated Scanner, Start Conditions, Actions, Top
1527 @code{INITIAL} (@pxref{Start Conditions}).
1593 @node Start Conditions, Multiple Input Buffers, Generated Scanner, Top
1594 @chapter Start Conditions
1994 @node Multiple Input Buffers, EOF, Start Conditions, Top
2811 start condition stacks (@pxref{Start Conditions}).
6681 > In GNU Info, under the section 'Start Conditions', and also in the man
/netbsd-src/external/bsd/ipf/dist/
H A DSTYLE.TXT32 Conditions
/netbsd-src/external/gpl3/gcc/dist/libcody/
H A DCODING.md43 Conditions and loops containing a single statement should not use `{}`.
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp682 SmallVector<std::unique_ptr<PredicateMatcher>, 1> Conditions; member in __anon332dbd1e0111::GroupMatcher
732 assert(!Conditions.empty() && in popFirstCondition()
734 std::unique_ptr<PredicateMatcher> P = std::move(Conditions.front()); in popFirstCondition()
735 Conditions.erase(Conditions.begin()); in popFirstCondition()
739 assert(!Conditions.empty() && in getFirstCondition()
741 return *Conditions.front(); in getFirstCondition()
743 bool hasFirstCondition() const override { return !Conditions.empty(); } in hasFirstCondition()
6049 assert(Conditions.empty() && "Already finalized?"); in finalize()
6064 Conditions.push_back(FirstRule.popFirstCondition()); in finalize()
6072 if (!Conditions.empty()) { in emit()
[all …]
/netbsd-src/external/mit/libuv/dist/docs/src/
H A Dthreading.rst156 Conditions section in API
/netbsd-src/external/mpl/bind/dist/
H A DCOPYING93 2. License Grants and Conditions
157 2.7. Conditions
H A DLICENSE93 2. License Grants and Conditions
157 2.7. Conditions
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2520 if (!RO.Conditions.Architecture.empty()) in FormResolverCondition()
2521 Condition = EmitX86CpuIs(RO.Conditions.Architecture); in FormResolverCondition()
2523 if (!RO.Conditions.Features.empty()) { in FormResolverCondition()
2524 llvm::Value *FeatureCond = EmitX86CpuSupports(RO.Conditions.Features); in FormResolverCondition()
H A DCodeGenModule.cpp3216 for (StringRef Feat : RO.Conditions.Features) in TargetMVPriority()
3219 if (!RO.Conditions.Architecture.empty()) in TargetMVPriority()
3221 Priority, TI.multiVersionSortPriority(RO.Conditions.Architecture)); in TargetMVPriority()
3370 return CodeGenFunction::GetX86CpuSupportsMask(LHS.Conditions.Features) > in emitCPUDispatchDefinition()
3371 CodeGenFunction::GetX86CpuSupportsMask(RHS.Conditions.Features); in emitCPUDispatchDefinition()
3380 (Options.end() - 2)->Conditions.Features) == 0) { in emitCPUDispatchDefinition()
H A DCodeGenFunction.h4710 } Conditions;
4714 : Function(F), Conditions(Arch, Feats) {}
/netbsd-src/external/mpl/dhcp/dist/
H A DLICENSE102 2. License Grants and Conditions
166 2.7. Conditions
/netbsd-src/external/mit/libuv/dist/
H A DLICENSE-docs210 Section 3 -- License Conditions.
342 Section 7 -- Other Terms and Conditions.
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A DEVP_PKEY-RSA.pod211 Section B.3.6 Generation of Probable Primes with Conditions Based on
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kInstrControl.td51 // Conditions
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h438 NodeArray Conditions; variable
441 : Node(KEnableIfAttr), Conditions(Conditions_) {} in EnableIfAttr()
443 template<typename Fn> void match(Fn F) const { F(Conditions); } in match()
447 Conditions.printWithComma(S); in printLeft()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DModuleMap.cpp359 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true) in sanitizeFilenameAsIdentifier() argument
360 #define ALIAS(Keyword, AliasOf, Conditions) .Case(Keyword, true) in sanitizeFilenameAsIdentifier() argument
/netbsd-src/external/lgpl3/mpc/dist/doc/
H A Dmpc.texi62 * Copying:: GNU MPC Copying Conditions (LGPL).
99 @unnumbered GNU MPC Copying Conditions
101 @cindex Conditions for copying GNU MPC
H A Dmpc.info30 * Copying:: GNU MPC Copying Conditions (LGPL).
46 GNU MPC Copying Conditions
1439 * Conditions for copying GNU MPC: Copying. (line 6)
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3703.txt63 4.4. Rule-Specific and Reusable Conditions and Actions ...... 11
576 4.4. Rule-Specific and Reusable Conditions and Actions
666 Figure 4 Rule-Specific Policy Conditions and Actions
814 Figure 6. Reusable Policy Conditions and Actions

123