Home
last modified time | relevance | path

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

123

/NextBSD/sys/contrib/dev/acpica/compiler/
HDdtsubtable.c292 UINT8 Step; in DtGetSubtableLength() local
316 Step = 5; in DtGetSubtableLength()
321 Step = 9; in DtGetSubtableLength()
326 Step = 10; in DtGetSubtableLength()
331 Step = 1; in DtGetSubtableLength()
335 for (i = 0; i < Step; i++) in DtGetSubtableLength()
/NextBSD/contrib/llvm/lib/Analysis/
HDScalarEvolutionExpander.cpp268 const SCEV *Step = A->getStepRecurrence(SE); in FactorOutConstant() local
269 const SCEV *StepRem = SE.getConstant(Step->getType(), 0); in FactorOutConstant()
270 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL)) in FactorOutConstant()
277 S = SE.getAddRecExpr(Start, Step, A->getLoop(), in FactorOutConstant()
1043 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNSW() local
1044 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getSignExtendExpr(Step, WideTy), in IsIncrementNSW()
1047 SE.getSignExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNSW()
1057 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNUW() local
1058 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getZeroExtendExpr(Step, WideTy), in IsIncrementNUW()
1061 SE.getZeroExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNUW()
[all …]
HDScalarEvolution.cpp1171 static const SCEV *getSignedOverflowLimitForStep(const SCEV *Step, in getSignedOverflowLimitForStep() argument
1174 unsigned BitWidth = SE->getTypeSizeInBits(Step->getType()); in getSignedOverflowLimitForStep()
1175 if (SE->isKnownPositive(Step)) { in getSignedOverflowLimitForStep()
1178 SE->getSignedRange(Step).getSignedMax()); in getSignedOverflowLimitForStep()
1180 if (SE->isKnownNegative(Step)) { in getSignedOverflowLimitForStep()
1183 SE->getSignedRange(Step).getSignedMin()); in getSignedOverflowLimitForStep()
1191 static const SCEV *getUnsignedOverflowLimitForStep(const SCEV *Step, in getUnsignedOverflowLimitForStep() argument
1194 unsigned BitWidth = SE->getTypeSizeInBits(Step->getType()); in getUnsignedOverflowLimitForStep()
1198 SE->getUnsignedRange(Step).getUnsignedMax()); in getUnsignedOverflowLimitForStep()
1226 static const SCEV *getOverflowLimitForStep(const SCEV *Step, in getOverflowLimitForStep()
[all …]
HDLoopAccessAnalysis.cpp823 const SCEV *Step = AR->getStepRecurrence(*SE); in isStridedPtr() local
826 const SCEVConstant *C = dyn_cast<SCEVConstant>(Step); in isStridedPtr()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaInit.cpp2935 void InitializationSequence::Step::Destroy() { in Destroy()
3032 Step S; in AddAddressOverloadResolutionStep()
3043 Step S; in AddDerivedToBaseCastStep()
3055 Step S; in AddReferenceBindingStep()
3062 Step S; in AddExtraneousCopyToTemporary()
3073 Step S; in AddUserConversionStep()
3084 Step S; in AddQualificationConversionStep()
3102 Step S; in AddAtomicConversionStep()
3111 Step S; in AddLValueToRValueStep()
3120 Step S; in AddConversionSequenceStep()
[all …]
HDSemaOpenMP.cpp2204 Expr *Step; member in __anona5ec887d0a11::OpenMPIterationSpaceChecker
2221 LB(nullptr), UB(nullptr), Step(nullptr), TestIsLessOp(false), in OpenMPIterationSpaceChecker()
2272 assert(!LB && !UB && !Step); in Dependent()
2276 (UB && UB->isValueDependent()) || (Step && Step->isValueDependent()); in Dependent()
2300 UB == nullptr && Step == nullptr && !TestIsLessOp && !TestIsStrictOp); in SetVarAndLB()
2319 assert(Var != nullptr && LB != nullptr && UB == nullptr && Step == nullptr && in SetUB()
2333 assert(Var != nullptr && LB != nullptr && Step == nullptr); in SetStep()
2382 Step = NewStep; in SetStep()
2704 auto NewStep = Transform.TransformExpr(Step->IgnoreImplicit()); in BuildNumIterations()
2708 NewStep.get(), Step->IgnoreImplicit()->getType(), Sema::AA_Converting, in BuildNumIterations()
[all …]
HDSemaStmt.cpp2731 for (InitializationSequence::step_iterator Step = Seq.step_begin(), in PerformMoveOrCopyInitialization() local
2733 Step != StepEnd; ++Step) { in PerformMoveOrCopyInitialization()
2734 if (Step->Kind != InitializationSequence::SK_ConstructorInitialization) in PerformMoveOrCopyInitialization()
2738 = cast<CXXConstructorDecl>(Step->Function.Function); in PerformMoveOrCopyInitialization()
/NextBSD/contrib/ipfilter/rules/
HDfirewall4 Step 1 - Block out "bad" IP packets.
14 Step 2 - Convert Network Security Policy to filter rules.
22 Step 3 - Create TCP "keep state" rules.
/NextBSD/sys/boot/pc98/boot0.5/
HDboot.s39 # Step 1: Save parameters
63 # Step 2: Calculate the segment address of the bootstrap routine
72 # Step 3: Read bootstrap code
85 # Step 4: Set DA/UA into BIOS work area
93 # Step 5: Set registers
/NextBSD/contrib/llvm/lib/TableGen/
HDSetTheory.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()
/NextBSD/contrib/ofed/management/opensm/doc/
HDperformance-manager-HOWTO.txt44 Step 1: Compile in support for the Performance Manager
66 Step 2: Enable the perfmgr and console in opensm.conf
103 Step 3: retrieve data which has been collected
106 Step 3a: Using console dump function
140 Step 3b: Using a plugin module
/NextBSD/contrib/gcc/config/arm/
HDREADME-interworking657 *Step One
667 *Step Two
672 *Step Three
677 *Step Four
682 *Step Five
687 *Step Six
696 *Step Two
701 *Step Three
706 *Step Five
715 *Step One
[all …]
/NextBSD/contrib/gperf/src/
HDsearch.cc946 struct Step struct
962 Step * _next; argument
1120 Step *steps; in find_asso_values()
1176 Step *step = new Step(); in find_asso_values()
1244 for (Step *step = steps; step; step = step->_next) in find_asso_values()
1277 for (Step *step = steps; step; step = step->_next) in find_asso_values()
1463 Step *step = steps; in find_asso_values()
/NextBSD/contrib/llvm/lib/Transforms/Vectorize/
HDLoopVectorize.cpp362 virtual Value *getStepVector(Value *Val, int StartIdx, Value *Step);
489 Value *getStepVector(Value *Val, int StartIdx, Value *Step) override;
813 InductionInfo(Value *Start, InductionKind K, ConstantInt *Step) in InductionInfo()
814 : StartValue(Start), IK(K), StepValue(Step) { in InductionInfo()
1747 Value *Step) { in getStepVector() argument
1751 assert(Step->getType() == Val->getType()->getScalarType() && in getStepVector()
1766 Step = Builder.CreateVectorSplat(VLen, Step); in getStepVector()
1767 assert(Step->getType() == Val->getType() && "Invalid step vec"); in getStepVector()
1770 Step = Builder.CreateMul(Cv, Step); in getStepVector()
1771 return Builder.CreateAdd(Val, Step, "induction"); in getStepVector()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDInitialization.h718 class Step {
762 SmallVector<Step, 4> Steps;
944 typedef SmallVectorImpl<Step>::const_iterator step_iterator;
/NextBSD/contrib/gcc/config/ia64/
HDia64.md3224 ;; Step 1
3233 ;; Step 2
3240 ;; Step 3
3247 ;; Step 4
3254 ;; Step 5
3261 ;; Step 6
3268 ;; Step 7
3276 ;; Step 8
3283 ;; Step 9
3290 ;; Step 10
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDLoopUtils.cpp470 const SCEV *Step = AR->getStepRecurrence(*SE); in isInductionPHI() local
472 const SCEVConstant *C = dyn_cast<SCEVConstant>(Step); in isInductionPHI()
/NextBSD/crypto/heimdal/doc/
HDwin2k.texi90 See also the Step-by-Step guide from Microsoft, referenced below.
279 @item Step-by-Step Guide to Kerberos 5 (krb5 1.0) Interoperability:
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDScalarEvolution.h578 bool proveNoWrapByVaryingStart(const SCEV *Start, const SCEV *Step,
651 const SCEV *getAddRecExpr(const SCEV *Start, const SCEV *Step,
/NextBSD/contrib/llvm/include/llvm/IR/
HDIntrinsicsARM.td240 // Vector Reciprocal Step.
243 // Vector Reciprocal Square Root Step.
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDOpenMPClause.h1599 void setStep(Expr *Step) { *(getFinals().end()) = Step; } in setStep() argument
1686 Expr *Step, Expr *CalcStep);
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDLoopInterchange.cpp318 const SCEV *Step = AddRec->getStepRecurrence(*SE); in getInductionVariable() local
319 const SCEVConstant *C = dyn_cast<SCEVConstant>(Step); in getInductionVariable()
HDIndVarSimplify.cpp1658 const SCEV *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(*SE)); in FindLoopCounter() local
1659 if (!Step || !Step->isOne()) in FindLoopCounter()
/NextBSD/contrib/llvm/lib/Target/ARM/
HDARMScheduleA8.td888 // Double-register Reciprical Step
892 // Quad-register Reciprical Step
/NextBSD/share/misc/
HDscsi_modes238 {Drive Step Rate} i2

123