Home
last modified time | relevance | path

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

12345678910>>...13

/external/v8/tools/release/
Dpush_to_candidates.py40 class Preparation(Step):
55 class FreshBranch(Step):
63 class PreparePushRevision(Step):
75 class IncrementVersion(Step):
109 class DetectLastRelease(Step):
119 class PrepareChangeLog(Step):
154 class EditChangeLog(Step):
177 class StragglerCommits(Step):
186 class SquashCommits(Step):
219 class NewBranch(Step):
[all …]
Dcreate_release.py14 class Preparation(Step):
23 class PrepareBranchRevision(Step):
33 class IncrementVersion(Step):
70 class DetectLastRelease(Step):
77 class PrepareChangeLog(Step):
112 class EditChangeLog(Step):
135 class PushBranchRef(Step):
146 class MakeBranch(Step):
157 class AddChangeLog(Step):
167 class SetVersion(Step):
[all …]
Droll_merge.py38 class Preparation(Step):
59 class CreateBranch(Step):
67 class SearchArchitecturePorts(Step):
99 class CreateCommitMessage(Step):
134 class ApplyPatches(Step):
148 class PrepareVersion(Step):
156 class IncrementVersion(Step):
179 class CommitLocal(Step):
191 class CommitRepository(Step):
201 class TagRevision(Step):
[all …]
Dauto_roll.py25 class Preparation(Step):
35 class DetectLastRoll(Step):
54 class DetectRevisionToRoll(Step):
90 class PrepareRollCandidate(Step):
105 class SwitchChromium(Step):
120 class UpdateChromiumCheckout(Step):
136 class UploadCL(Step):
171 class CleanUp(Step):
Dauto_tag.py12 class Preparation(Step):
27 class GetTags(Step):
35 class GetOldestUntaggedVersion(Step):
91 class GetLKGRs(Step):
101 class CalculateTagRevision(Step):
149 class MakeTag(Step):
161 class CleanUp(Step):
Dmerge_to_branch.py39 class Preparation(Step):
58 class CreateBranch(Step):
66 class SearchArchitecturePorts(Step):
98 class CreateCommitMessage(Step):
152 class ApplyPatches(Step):
165 class CommitLocal(Step):
175 class CommitRepository(Step):
184 class CleanUp(Step):
Dauto_push.py40 class Preparation(Step):
48 class FetchCandidate(Step):
57 class LastReleaseBailout(Step):
70 class CreateRelease(Step):
/external/pdfium/third_party/agg23/
Dagg_pixfmt_gray.h42 template<class Blender, unsigned Step = 1, unsigned Offset = 0>
95 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in pixel()
103 x * Step * sizeof(value_type) + in row()
110 x * Step * sizeof(value_type) + in span()
115 *((value_type*)m_rbuf->row(y) + x * Step + Offset) = c.v; in copy_pixel()
119 copy_or_blend_pix((value_type*)m_rbuf->row(y) + x * Step + Offset, c, cover); in blend_pixel()
125 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in copy_hline()
128 p += Step; in copy_hline()
137 value_type* p = (value_type*)m_rbuf->row(y) + x * Step + Offset; in blend_hline()
142 p += Step; in blend_hline()
[all …]
/external/tensorflow/tensorflow/core/lib/db/
Dsqlite_test.cc51 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
55 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
59 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
69 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
85 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
99 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
117 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
130 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
132 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
144 TF_ASSERT_OK(stmt.Step(&is_done_)); in TEST_F()
[all …]
Dsqlite.cc96 return stmt.Step(&unused_done); in SetPragma()
177 Status SqliteStatement::Step(bool* is_done) { in Step() function in tensorflow::SqliteStatement
203 TF_CHECK_OK(Step(&is_done)); in StepOrDie()
209 TF_RETURN_IF_ERROR(Step(&is_done)); in StepOnce()
223 Status s = Step(&is_done); in StepAndReset()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopPredication.cpp246 bool isSupportedStep(const SCEV* Step);
422 bool LoopPredication::isSupportedStep(const SCEV* Step) { in isSupportedStep() argument
423 return Step->isOne() || (Step->isAllOnesValue() && EnableCountDownLoop); in isSupportedStep()
535 auto *Step = RangeCheckIV->getStepRecurrence(*SE); in widenICmpRangeCheck() local
538 if (!isSupportedStep(Step)) { in widenICmpRangeCheck()
554 assert(Step->getType() == in widenICmpRangeCheck()
557 if (Step != CurrLatchCheck.IV->getStepRecurrence(*SE)) { in widenICmpRangeCheck()
562 if (Step->isOne()) in widenICmpRangeCheck()
566 assert(Step->isAllOnesValue() && "Step should be -1!"); in widenICmpRangeCheck()
669 auto *Step = Result->IV->getStepRecurrence(*SE); in parseLoopLatchICmp() local
[all …]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCondition.java16 public interface Step<I, O> { interface in Condition
23 public abstract <U> Condition<U> and(Step<? super T, U> mapping); in and()
26 public final <U> Condition<U> then(Step<? super T, U> mapping) { return and(mapping); } in then()
57 public <U> Condition<U> and(Step<? super T, U> next) { in and()
65 @Override public <U> Condition<U> and(Step<? super T, U> mapping) { in and()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dutils.h66 template<int Begin, int End, int Step = 1>
71 UnrollerL<Begin + Step, End, Step>::step(func); in step()
75 template<int End, int Step>
76 struct UnrollerL<End, End, Step> {
83 template<int Begin, int End, int Step = 1, int Mask = 0x7f>
91 UnrollerL<Begin + Step, End, Step>::step(func);
95 template<int End, int Step, int Mask>
96 struct UnrollerLMask<End, End, Step, Mask> {
/external/clang/
DINSTALL.txt8 // Step 1: Organization
21 // Step 2: Configure and Build LLVM
32 // Step 3: (Optional) Verify Your Build
40 // Step 4: Install Clang
/external/llvm/lib/Transforms/Utils/
DLoopUtils.cpp657 const SCEV *Step) in InductionDescriptor() argument
658 : StartValue(Start), IK(K), Step(Step) { in InductionDescriptor()
675 assert(Step->getType()->isIntegerTy() && "StepValue is not an integer"); in InductionDescriptor()
686 if (isa<SCEVConstant>(Step)) in getConstIntStepValue()
687 return dyn_cast<ConstantInt>(cast<SCEVConstant>(Step)->getValue()); in getConstIntStepValue()
716 SE->getMulExpr(Step, SE->getSCEV(Index))); in transform()
720 assert(Index->getType() == Step->getType() && in transform()
722 assert(isa<SCEVConstant>(Step) && in transform()
724 const SCEV *S = SE->getMulExpr(SE->getSCEV(Index), Step); in transform()
780 const SCEV *Step = AR->getStepRecurrence(*SE); in isInductionPHI() local
[all …]
/external/libchrome/base/android/jni_generator/
DtestInnerClassNativesBothInnerAndOuterRegistrations.golden19 // Step 1: Forward declarations (classes).
42 // Step 2: Forward declarations (methods).
52 // Step 3: Method declarations.
95 // Step 4: Main dex and non-main dex registration functions.
DtestNativesLong.golden19 // Step 1: Forward declarations.
34 // Step 2: Constants (optional).
37 // Step 3: Method stubs.
DtestInnerClassNatives.golden19 // Step 1: Forward declarations.
47 // Step 2: Constants (optional).
50 // Step 3: Method stubs.
/external/v8/src/wasm/
Dmodule-compiler.h126 template <typename Step, typename... Args>
130 template <typename Step, typename... Args>
135 template <typename Step, typename... Args>
140 template <typename Step, typename... Args>
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp198 std::unique_ptr<ExprAST> Start, End, Step, Body; member in __anon1b6fdac40111::ForExprAST
202 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, in ForExprAST() argument
205 Step(std::move(Step)), Body(std::move(Body)) {} in ForExprAST()
391 std::unique_ptr<ExprAST> Step; in ParseForExpr() local
394 Step = ParseExpression(); in ParseForExpr()
395 if (!Step) in ParseForExpr()
408 std::move(Step), std::move(Body)); in ParseForExpr()
724 if (Step) { in codegen()
725 StepVal = Step->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp188 std::unique_ptr<ExprAST> Start, End, Step, Body; member in __anona9d9756c0111::ForExprAST
192 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, in ForExprAST() argument
195 Step(std::move(Step)), Body(std::move(Body)) {} in ForExprAST()
377 std::unique_ptr<ExprAST> Step; in ParseForExpr() local
380 Step = ParseExpression(); in ParseForExpr()
381 if (!Step) in ParseForExpr()
394 std::move(Step), std::move(Body)); in ParseForExpr()
710 if (Step) { in codegen()
711 StepVal = Step->codegen(); in codegen()
/external/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp278 const SCEV *Step = A->getStepRecurrence(SE); in FactorOutConstant() local
279 const SCEV *StepRem = SE.getConstant(Step->getType(), 0); in FactorOutConstant()
280 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL)) in FactorOutConstant()
287 S = SE.getAddRecExpr(Start, Step, A->getLoop(), in FactorOutConstant()
1059 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNSW() local
1060 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getSignExtendExpr(Step, WideTy), in IsIncrementNSW()
1063 SE.getSignExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNSW()
1073 const SCEV *Step = AR->getStepRecurrence(SE); in IsIncrementNUW() local
1074 const SCEV *OpAfterExtend = SE.getAddExpr(SE.getZeroExtendExpr(Step, WideTy), in IsIncrementNUW()
1077 SE.getZeroExtendExpr(SE.getAddExpr(AR, Step), WideTy); in IsIncrementNUW()
[all …]
/external/clang/lib/Sema/
DSemaInit.cpp3026 void InitializationSequence::Step::Destroy() { in Destroy()
3124 Step S; in AddAddressOverloadResolutionStep()
3135 Step S; in AddDerivedToBaseCastStep()
3147 Step S; in AddReferenceBindingStep()
3154 Step S; in AddExtraneousCopyToTemporary()
3165 Step S; in AddUserConversionStep()
3176 Step S; in AddQualificationConversionStep()
3194 Step S; in AddAtomicConversionStep()
3203 Step S; in AddLValueToRValueStep()
3212 Step S; in AddConversionSequenceStep()
[all …]
/external/libphonenumber/demo/war/
Dphonenumberparser.jsp10 <h2>Step 1</h2>
18 <h2>Step 2</h2>
24 <h2>Step 3</h2>
/external/autotest/scheduler/
Dmonitor_db.py375 with breakdown_timer.Step('trigger_refresh'):
378 with breakdown_timer.Step('schedule_running_host_queue_entries'):
380 with breakdown_timer.Step('schedule_special_tasks'):
382 with breakdown_timer.Step('schedule_new_jobs'):
384 with breakdown_timer.Step('gather_tick_metrics'):
386 with breakdown_timer.Step('sync_refresh'):
390 with breakdown_timer.Step('send_to_lucifer'):
398 with breakdown_timer.Step('run_cleanup'):
400 with breakdown_timer.Step('find_aborting'):
402 with breakdown_timer.Step('find_aborted_special_tasks'):
[all …]

12345678910>>...13