HomeSort by relevance Sort by last modified time
    Searched defs:minStep (Results 1 - 4 of 4) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdaptiveStepsizeIntegrator.java 87 private final double minStep;
95 * @param minStep minimal step (must be positive even for backward
103 final double minStep, final double maxStep,
109 this.minStep = FastMath.abs(minStep);
125 * @param minStep minimal step (must be positive even for backward
133 final double minStep, final double maxStep,
139 this.minStep = minStep;
164 if ((initialStepSize < minStep) || (initialStepSize > maxStep))
    [all...]
  /external/deqp/framework/randomshaders/
rsgUtils.cpp 226 int minStep = rnd.getInt(0, maxSteps-rangeLen);
228 float minVal = minFloatVal + step*(float)minStep;
rsgExpression.cpp 207 int minStep = rnd.getInt(0, maxSteps-rangeLen);
209 float minVal = minFloatVal + step*(float)minStep;
    [all...]
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp 147 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
148 const float step = de::max(minComp(minStep), 1.0f / float(maxSteps));
165 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
166 const float step = de::max(minComp(minStep), 1.0f / float(maxSteps));
176 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
177 const float step = minComp(minStep);
187 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
188 const float step = minComp(minStep);
    [all...]

Completed in 419 milliseconds