HomeSort by relevance Sort by last modified time
    Searched refs:yTmp (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/modules/video_processing/test/
brightness_detection_test.cc 60 uint32_t yTmp = 0;
62 yTmp = frame[yIdx] << 1;
63 if (yTmp > 255) {
64 yTmp = 255;
66 frame[yIdx] = static_cast<uint8_t>(yTmp);
97 int32_t yTmp = 0;
99 yTmp = y_plane[yIdx] >> 1;
100 y_plane[yIdx] = static_cast<uint8_t>(yTmp);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 114 final double[] yTmp = new double[y0.length];
121 rki.reinitialize(this, yTmp, yDotK, forward);
124 interpolator = new DummyStepInterpolator(yTmp, yDotK[stages - 1], forward);
153 yTmp[j] = y[j] + stepSize * sum;
156 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
166 yTmp[j] = y[j] + stepSize * sum;
171 System.arraycopy(yTmp, 0, y, 0, y0.length);
EmbeddedRungeKuttaIntegrator.java 208 final double[] yTmp = new double[y0.length];
215 rki.reinitialize(this, yTmp, yDotK, forward);
218 interpolator = new DummyStepInterpolator(yTmp, yDotK[stages - 1], forward);
258 stepStart, y, yDotK[0], yTmp, yDotK[1]);
272 yTmp[j] = y[j] + stepSize * sum;
275 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
285 yTmp[j] = y[j] + stepSize * sum;
289 error = estimateError(yDotK, y, yTmp, stepSize);
302 System.arraycopy(yTmp, 0, y, 0, y0.length);
AdamsMoultonIntegrator.java 221 final double[] yTmp = new double[y0.length];
254 System.arraycopy(interpolator.getInterpolatedState(), 0, yTmp, 0, y0.length);
257 computeDerivatives(stepEnd, yTmp, yDot);
267 error = nordsieckTmp.walkInOptimizedOrder(new Corrector(y, predictedScaled, yTmp));
279 computeDerivatives(stepEnd, yTmp, yDot);
289 System.arraycopy(yTmp, 0, y, 0, n);
DormandPrince853StepInterpolator.java 397 final double[] yTmp = new double[currentState.length];
405 yTmp[j] = currentState[j] + h * s;
407 integrator.computeDerivatives(pT + C14 * h, yTmp, yDotKLast[0]);
415 yTmp[j] = currentState[j] + h * s;
417 integrator.computeDerivatives(pT + C15 * h, yTmp, yDotKLast[1]);
425 yTmp[j] = currentState[j] + h * s;
427 integrator.computeDerivatives(pT + C16 * h, yTmp, yDotKLast[2]);
GraggBulirschStoerIntegrator.java 453 * @param yTmp placeholder for one state vector
462 final double[] yTmp)
472 yTmp[i] = y0[i];
488 yEnd[i] = yTmp[i] + subStep2 * f[j][i];
489 yTmp[i] = middle;
515 yEnd[i] = 0.5 * (yTmp[i] + yEnd[i] + subStep * f[n][i]);
562 final double[] yTmp = new double[y0.length];
655 stepStart, y, yDot0, yTmp, yTmpDot);
682 yTmp)) {
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastHadamardTransformer.java 177 final double[] yTmp = yCurrent;
179 yPrevious = yTmp;
228 final int[] yTmp = yCurrent;
230 yPrevious = yTmp;

Completed in 110 milliseconds