/external/lisa/libs/wlgen/wlgen/ |
H A D | __init__.py | 22 from wlgen.rta import RTA, Ramp, Step, Pulse, Periodic namespace
|
H A D | rta.py | 672 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 D | incremental-marking-job.cc | 33 void IncrementalMarkingJob::Task::Step(Heap* heap) { function in class:v8::internal::IncrementalMarkingJob::Task 57 Step(heap);
|
H A D | memory-reducer.cc | 60 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 D | state_machine.py | 99 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 D | Condition.java | 16 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 D | EventMod.java | 54 public static final byte Step = 10; field in class:EventMod.ModKind
|
/external/dng_sdk/source/ |
H A D | dng_resample.h | 144 uint32 Step () const function in class:dng_resample_weights
|
/external/webrtc/webrtc/base/ |
H A D | task.cc | 69 void Task::Step() { function in class:rtc::Task
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
H A D | intelligibility_utils.h | 81 void Step(const std::complex<float>* data, bool skip_fudge = false) { function in class:webrtc::intelligibility::VarianceArray
|
/external/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 170 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 D | SetTheory.cpp | 172 int Step = From <= To ? 1 : -1; local 173 for (To += Step; From != To; From += Step) {
|
/external/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 319 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 D | LoopUtils.h | 265 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 D | nfa.cc | 98 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 D | XPathParser.java | 1615 * 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 D | LoopInterchange.cpp | 317 const SCEV *Step = AddRec->getStepRecurrence(*SE); local 318 const SCEVConstant *C = dyn_cast<SCEVConstant>(Step);
|
/external/llvm/lib/Transforms/Utils/ |
H A D | LoopUtils.cpp | 657 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 D | common_includes.py | 404 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 D | toy.cpp | 214 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 D | toy.cpp | 214 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 D | toy.cpp | 214 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 D | toy.cpp | 215 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 D | toy.cpp | 230 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 D | toy.cpp | 188 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...] |