Home
last modified time | relevance | path

Searched refs:Step (Results 1 – 25 of 61) sorted by relevance

123

/minix3/external/bsd/llvm/dist/clang/
H A DINSTALL.txt8 // Step 1: Organization
21 // Step 2: Configure and Build LLVM
32 // Step 3: (Optional) Verify Your Build
40 // Step 4: Install Clang
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaInit.cpp2717 void InitializationSequence::Step::Destroy() { in Destroy()
2814 Step S; in AddAddressOverloadResolutionStep()
2825 Step S; in AddDerivedToBaseCastStep()
2837 Step S; in AddReferenceBindingStep()
2844 Step S; in AddExtraneousCopyToTemporary()
2855 Step S; in AddUserConversionStep()
2866 Step S; in AddQualificationConversionStep()
2884 Step S; in AddAtomicConversionStep()
2893 Step S; in AddLValueToRValueStep()
2902 Step S; in AddConversionSequenceStep()
[all …]
H A DSemaOpenMP.cpp1896 Expr *Step; member in __anon8add7ef70911::OpenMPIterationSpaceChecker
1913 LB(nullptr), UB(nullptr), Step(nullptr), TestIsLessOp(false), in OpenMPIterationSpaceChecker()
1962 assert(!LB && !UB && !Step); in Dependent()
1966 (UB && UB->isValueDependent()) || (Step && Step->isValueDependent()); in Dependent()
1974 UB == nullptr && Step == nullptr && !TestIsLessOp && !TestIsStrictOp); in SetVarAndLB()
1987 assert(Var != nullptr && LB != nullptr && UB == nullptr && Step == nullptr && in SetUB()
2001 assert(Var != nullptr && LB != nullptr && Step == nullptr); in SetStep()
2050 Step = NewStep; in SetStep()
2303 Step->IgnoreImplicit()); in BuildNumIterations()
2314 Step->IgnoreImplicit()); in BuildNumIterations()
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/TableGen/
H A DSetTheory.cpp170 int Step = 1; in apply() local
176 Step = II->getValue(); in apply()
206 Step *= From <= To ? 1 : -1; in apply()
208 if (Step > 0 && From > To) in apply()
210 else if (Step < 0 && From < To) in apply()
225 From += Step; in apply()
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp174 ExprAST *Start, *End, *Step, *Body; member in __anon5d57a7340111::ForExprAST
179 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
362 ExprAST *Step = 0; in ParseForExpr() local
365 Step = ParseExpression(); in ParseForExpr()
366 if (Step == 0) in ParseForExpr()
378 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
676 if (Step) { in Codegen()
677 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp193 ExprAST *Start, *End, *Step, *Body; member in __anond1d418350111::ForExprAST
198 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
393 ExprAST *Step = 0; in ParseForExpr() local
396 Step = ParseExpression(); in ParseForExpr()
397 if (Step == 0) in ParseForExpr()
409 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
784 if (Step) { in Codegen()
785 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/bind/dist/win32utils/
H A Dbuild.txt38 Step 1: Download and build OpenSSL
79 Step 2: Download and build LibXML2
97 Step 3: Download and build GeoIP
113 Step 4: Download and build Readline
126 Step 5: Make the redistributable runtime object available
138 Step 6: Configuring the BIND build
162 Step 7: Building BIND
186 Step 8: Install
/minix3/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp284 const SCEV *Step = A->getStepRecurrence(SE); in FactorOutConstant() local
285 const SCEV *StepRem = SE.getConstant(Step->getType(), 0); in FactorOutConstant()
286 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL)) in FactorOutConstant()
293 S = SE.getAddRecExpr(Start, Step, A->getLoop(), in FactorOutConstant()
1181 const SCEV *Step = Normalized->getStepRecurrence(SE); in getAddRecExprPHILiterally() local
1185 bool useSubtract = !ExpandTy->isPointerTy() && Step->isNonConstantNegative(); in getAddRecExprPHILiterally()
1187 Step = SE.getNegativeSCEV(Step); in getAddRecExprPHILiterally()
1189 Value *StepV = expandCodeFor(Step, IntTy, L->getHeader()->begin()); in getAddRecExprPHILiterally()
1264 const SCEV *Step = Normalized->getStepRecurrence(SE); in expandAddRecExprLiterally() local
1266 if (!SE.dominates(Step, L->getHeader())) { in expandAddRecExprLiterally()
[all …]
H A DScalarEvolution.cpp1197 const SCEV *Step = AR->getStepRecurrence(*this); in getZeroExtendExpr() local
1205 getZeroExtendExpr(Step, Ty), in getZeroExtendExpr()
1230 const SCEV *ZMul = getMulExpr(CastedMaxBECount, Step); in getZeroExtendExpr()
1238 getZeroExtendExpr(Step, WideTy))); in getZeroExtendExpr()
1244 getZeroExtendExpr(Step, Ty), in getZeroExtendExpr()
1252 getSignExtendExpr(Step, WideTy))); in getZeroExtendExpr()
1259 getSignExtendExpr(Step, Ty), in getZeroExtendExpr()
1268 if (isKnownPositive(Step)) { in getZeroExtendExpr()
1270 getUnsignedRange(Step).getUnsignedMax()); in getZeroExtendExpr()
1279 getZeroExtendExpr(Step, Ty), in getZeroExtendExpr()
[all …]
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp177 ExprAST *Start, *End, *Step, *Body; member in ForExprAST
181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
373 ExprAST *Step = 0; in ParseForExpr() local
376 Step = ParseExpression(); in ParseForExpr()
377 if (Step == 0) return 0; in ParseForExpr()
387 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
827 if (Step) { in Codegen()
828 StepVal = Step->Codegen(); in Codegen()
H A Dtoy.cpp178 ExprAST *Start, *End, *Step, *Body; member in ForExprAST
182 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
374 ExprAST *Step = 0; in ParseForExpr() local
377 Step = ParseExpression(); in ParseForExpr()
378 if (Step == 0) return 0; in ParseForExpr()
388 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1107 if (Step) { in Codegen()
1108 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp199 ExprAST *Start, *End, *Step, *Body; member in __anon465089360111::ForExprAST
204 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
413 ExprAST *Step = 0; in ParseForExpr() local
416 Step = ParseExpression(); in ParseForExpr()
417 if (Step == 0) in ParseForExpr()
429 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
894 if (Step) { in Codegen()
895 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp192 ExprAST *Start, *End, *Step, *Body; member in ForExprAST
196 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
388 ExprAST *Step = 0; in ParseForExpr() local
391 Step = ParseExpression(); in ParseForExpr()
392 if (Step == 0) return 0; in ParseForExpr()
402 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
845 if (Step) { in Codegen()
846 StepVal = Step->Codegen(); in Codegen()
H A Dtoy.cpp199 ExprAST *Start, *End, *Step, *Body; member in ForExprAST
203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
395 ExprAST *Step = 0; in ParseForExpr() local
398 Step = ParseExpression(); in ParseForExpr()
399 if (Step == 0) return 0; in ParseForExpr()
409 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1209 if (Step) { in Codegen()
1210 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp314 ExprAST *Start, *End, *Step, *Body; member in __anonbaccfa370211::ForExprAST
319 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
324 Step->dump(indent(out, ind) << "Step:", ind + 1); in dump()
559 ExprAST *Step = 0; in ParseForExpr() local
562 Step = ParseExpression(); in ParseForExpr()
563 if (Step == 0) in ParseForExpr()
575 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1095 if (Step) { in Codegen()
1096 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp176 ExprAST *Start, *End, *Step, *Body; member in ForExprAST
180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
372 ExprAST *Step = 0; in ParseForExpr() local
375 Step = ParseExpression(); in ParseForExpr()
376 if (Step == 0) return 0; in ParseForExpr()
386 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1067 if (Step) { in Codegen()
1068 StepVal = Step->Codegen(); in Codegen()
/minix3/common/dist/zlib/contrib/ada/
H A Dzlib.adb45 Step : Flate_Step_Function; component
77 := (True => (Step => Thin.Deflate'Access,
79 False => (Step => Thin.Inflate'Access,
531 Code := Flate (Filter.Compression).Step
/minix3/external/bsd/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp218 ExprAST *Start, *End, *Step, *Body; member in ForExprAST
222 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
414 ExprAST *Step = 0; in ParseForExpr() local
417 Step = ParseExpression(); in ParseForExpr()
418 if (Step == 0) return 0; in ParseForExpr()
428 return new ForExprAST(IdName, Start, End, Step, Body); in ParseForExpr()
1287 if (Step) { in Codegen()
1288 StepVal = Step->Codegen(); in Codegen()
/minix3/external/bsd/llvm/dist/llvm/test/Analysis/ScalarEvolution/
H A D2011-03-09-ExactNoMaxBECount.ll3 ; The inner loop computes the Step and Start of the outer loop.
/minix3/external/bsd/bind/dist/
H A DFAQ399 A: Step 1: Ensure all nameservers, new and old, are serving the same zone
402 Step 2: Work out the maximum TTL of the NS RRset in the parent and
405 nameservers you can skip to Step 6.
407 Step 3: Add new nameservers to the NS RRset for the zone and wait until
410 Step 4: Inform the parent zone of the new NS RRset then wait for all
413 Step 5: Wait for cache to be clear of the old NS RRset. See Step 2 for
416 Step 6: Remove any old nameservers from the zones NS RRset and wait for
419 Step 7: Inform the parent zone of the new NS RRset then wait for all
422 Step 8: Wait for cache to be clear of the old NS RRset. See Step 2 for
425 Step 9: Turn off the old nameservers or remove the zone entry from the
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DInitialization.h718 class Step {
762 SmallVector<Step, 4> Steps;
929 typedef SmallVectorImpl<Step>::const_iterator step_iterator;
/minix3/external/bsd/llvm/dist/llvm/docs/tutorial/
H A DLangImpl5.rst467 ExprAST *Start, *End, *Step, *Body;
471 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
510 ExprAST *Step = 0;
513 Step = ParseExpression();
514 if (Step == 0) return 0;
524 return new ForExprAST(IdName, Start, End, Step, Body);
651 if (Step) {
652 StepVal = Step->Codegen();
/minix3/crypto/external/bsd/heimdal/dist/doc/
H A Dwin2k.texi91 See also the Step-by-Step guide from Microsoft, referenced below.
280 @item Step-by-Step Guide to Kerberos 5 (krb5 1.0) Interoperability:
/minix3/external/bsd/llvm/dist/clang/docs/
H A DLibASTMatchersTutorial.rst15 Step 0: Obtaining Clang
87 Step 1: Create a ClangTool
220 Step 2: Using AST matchers
316 Step 3.5: More Complicated Matchers
450 Step 4: Retrieving Matched Nodes
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h1359 void setStep(Expr *Step) { *varlist_end() = Step; } in setStep() argument
1400 ArrayRef<Expr *> VL, Expr *Step);

123