Searched defs:Step (Results 1 - 25 of 66) sorted by relevance

123

/external/lisa/libs/wlgen/wlgen/
H A D__init__.py22 from wlgen.rta import RTA, Ramp, Step, Pulse, Periodic namespace
H A Drta.py672 class Step(Ramp): class in inherits:Ramp
698 super(Step, self).__init__(start_pct, end_pct, delta_pct, time_s,
/external/v8/src/heap/
H A Dincremental-marking-job.cc33 void IncrementalMarkingJob::Task::Step(Heap* heap) { function in class:v8::internal::IncrementalMarkingJob::Task
57 Step(heap);
H A Dmemory-reducer.cc60 state_ = Step(state_, event);
99 state_ = Step(state_, event);
116 state_ = Step(state_, event);
131 MemoryReducer::State MemoryReducer::Step(const State& state, function in class:v8::internal::MemoryReducer
/external/autotest/client/cros/cellular/pseudomodem/
H A Dstate_machine.py99 self.Step()
150 def Step(self): member in class:StateMachine
156 logging.info('StateMachine: Step')
192 gobject.idle_add(StateMachine.Step, self)
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DCondition.java16 public interface Step<I, O> { interface in class:Condition
23 public abstract <U> Condition<U> and(Step<? super T, U> mapping);
26 public final <U> Condition<U> then(Step<? super T, U> mapping) { return and(mapping); }
57 public <U> Condition<U> and(Step<? super T, U> next) {
65 @Override public <U> Condition<U> and(Step<? super T, U> mapping) {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventMod.java54 public static final byte Step = 10; field in class:EventMod.ModKind
/external/dng_sdk/source/
H A Ddng_resample.h144 uint32 Step () const function in class:dng_resample_weights
/external/webrtc/webrtc/base/
H A Dtask.cc69 void Task::Step() { function in class:rtc::Task
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
H A Dintelligibility_utils.h81 void Step(const std::complex<float>* data, bool skip_fudge = false) { function in class:webrtc::intelligibility::VarianceArray
/external/llvm/lib/TableGen/
H A DSetTheory.cpp170 int Step = 1; variable
176 Step = II->getValue();
206 Step *= From <= To ? 1 : -1;
208 if (Step > 0 && From > To)
210 else if (Step < 0 && From < To)
225 From += Step;
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DSetTheory.cpp172 int Step = From <= To ? 1 : -1; local
173 for (To += Step; From != To; From += Step) {
/external/clang/lib/AST/
H A DOpenMPClause.cpp319 ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep,
322 // (Step and CalcStep).
335 Clause->setStep(Step);
345 // (Step and CalcStep).
315 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, OpenMPLinearClauseKind Modifier, SourceLocation ModifierLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep, Stmt *PreInit, Expr *PostUpdate) argument
/external/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h265 IK_IntInduction, ///< Integer induction variable. Step = C.
266 IK_PtrInduction ///< Pointer induction var. Step = C / sizeof(elem).
272 : StartValue(nullptr), IK(IK_NoInduction), Step(nullptr) {}
291 const SCEV *getStep() const { return Step; }
313 InductionDescriptor(Value *Start, InductionKind K, const SCEV *Step);
319 /// Step value.
320 const SCEV *Step; member in class:llvm::InductionDescriptor
/external/regex-re2/re2/
H A Dnfa.cc98 inline int Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p);
292 int NFA::Step(Threadq* runq, Threadq* nextq, int c, int flag, const char* p) { function in class:re2::NFA
517 int id = Step(runq, nextq, c, flag, p-1);
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java1615 * RelativeLocationPath ::= Step
1616 * | RelativeLocationPath '/' Step
1626 if (!Step())
1635 if (!Step())
1648 * Step ::= Basis Predicate
1655 protected boolean Step() throws javax.xml.transform.TransformerException method in class:XPathParser
1661 // At most a single '/' before each Step is consumed by caller; if the
1662 // first thing is a '/', that means we had '//' and the Step must not
1735 // No Step matched - that's an error if previous thing was a '//'
/external/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp317 const SCEV *Step = AddRec->getStepRecurrence(*SE); local
318 const SCEVConstant *C = dyn_cast<SCEVConstant>(Step);
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp657 const SCEV *Step)
658 : StartValue(Start), IK(K), Step(Step) {
669 // Check the Step Value. It should be non-zero integer value.
671 "Step value is zero");
674 "Step value should be constant for pointer induction");
675 assert(Step->getType()->isIntegerTy() && "StepValue is not an integer");
686 if (isa<SCEVConstant>(Step))
687 return dyn_cast<ConstantInt>(cast<SCEVConstant>(Step)->getValue());
702 // and calculate (Start + Index * Step) fo
656 InductionDescriptor(Value *Start, InductionKind K, const SCEV *Step) argument
780 const SCEV *Step = AR->getStepRecurrence(*SE); local
[all...]
/external/v8/tools/release/
H A Dcommon_includes.py404 class Step(GitRecipesMixin): class in inherits:GitRecipesMixin
443 print ">>> Step %d: %s" % (self._number, self._text)
741 class BootstrapStep(Step):
757 class UploadStep(Step):
773 def MakeStep(step_class=Step, number=0, state=None, config=None,
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp214 std::unique_ptr<ExprAST> Start, End, Step, Body; member in class:__anon12322::ForExprAST
218 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
221 Step(std::move(Step)), Body(std::move(Body)) {}
430 std::unique_ptr<ExprAST> Step;
433 Step = ParseExpression();
434 if (!Step)
447 std::move(Step), std::move(Body));
930 if (Step) {
931 StepVal = Step
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp214 std::unique_ptr<ExprAST> Start, End, Step, Body; member in class:__anon12323::ForExprAST
218 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
221 Step(std::move(Step)), Body(std::move(Body)) {}
430 std::unique_ptr<ExprAST> Step;
433 Step = ParseExpression();
434 if (!Step)
447 std::move(Step), std::move(Body));
930 if (Step) {
931 StepVal = Step
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp214 std::unique_ptr<ExprAST> Start, End, Step, Body; member in class:__anon12324::ForExprAST
218 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
221 Step(std::move(Step)), Body(std::move(Body)) {}
430 std::unique_ptr<ExprAST> Step;
433 Step = ParseExpression();
434 if (!Step)
447 std::move(Step), std::move(Body));
930 if (Step) {
931 StepVal = Step
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp215 std::unique_ptr<ExprAST> Start, End, Step, Body; member in class:ForExprAST
219 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
222 Step(std::move(Step)), Body(std::move(Body)) {}
418 std::unique_ptr<ExprAST> Step;
421 Step = ParseExpression();
422 if (!Step)
435 std::move(Step), std::move(Body));
919 if (Step) {
920 StepVal = Step
218 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A Dtoy.cpp230 std::unique_ptr<ExprAST> Start, End, Step, Body; member in class:ForExprAST
234 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
237 Step(std::move(Step)), Body(std::move(Body)) {}
433 std::unique_ptr<ExprAST> Step;
436 Step = ParseExpression();
437 if (!Step)
450 std::move(Step), std::move(Body));
941 if (Step) {
942 StepVal = Step
233 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp188 std::unique_ptr<ExprAST> Start, End, Step, Body; member in class:__anon12328::ForExprAST
192 std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step,
195 Step(std::move(Step)), Body(std::move(Body)) {}
377 std::unique_ptr<ExprAST> Step;
380 Step = ParseExpression();
381 if (!Step)
394 std::move(Step), std::move(Body));
710 if (Step) {
711 StepVal = Step
191 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, std::unique_ptr<ExprAST> Body) argument
[all...]

Completed in 882 milliseconds

123