HomeSort by relevance Sort by last modified time
    Searched full:interpolate (Results 51 - 75 of 678) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
UnivariateRealInterpolator.java 37 UnivariateRealFunction interpolate(double xval[], double yval[]) method in interface:UnivariateRealInterpolator
BicubicSplineInterpolator.java 37 public BicubicSplineInterpolatingFunction interpolate(final double[] xval, method in class:BicubicSplineInterpolator
75 ySplineX[j] = spInterpolator.interpolate(xval, fX[j]);
82 xSplineY[i] = spInterpolator.interpolate(yval, fval[i]);
SmoothingBicubicSplineInterpolator.java 50 public BivariateRealFunction interpolate(final double[] xval, method in class:SmoothingBicubicSplineInterpolator
88 ySplineX[j] = spInterpolator.interpolate(xval, zX[j]);
105 xSplineY[i] = spInterpolator.interpolate(yval, zY_1[i]);
  /external/dng_sdk/source/
dng_mosaic_info.h 147 /// \param srcPlane Which plane to interpolate.
161 /// \param srcPlane Which plane to interpolate.
176 /// \param srcPlane Which plane to interpolate.
178 virtual void Interpolate (dng_host &host,
dng_temperature.cpp 134 // Interpolate the temperature.
147 // Interpolate vectors along slope.
204 // Interpolate the black body coordinates.
  /external/libopus/silk/
interpolate.c 34 /* Interpolate two vectors */
  /external/webrtc/webrtc/common_audio/resampler/
sinc_resampler_sse.cc 43 // Linearly interpolate the two "convolutions".
  /external/webrtc/webrtc/modules/audio_processing/vad/
pitch_internal.cc 41 // Interpolate lags and gains.
  /frameworks/av/media/libeffects/loudness/dsp/core/
interpolator_linear.h 34 // for (int n = 0; n < data_length; n++) Y[n] = interp.Interpolate(X[n]);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 107 declaration.Interpolate = 0;
124 unsigned interpolate,
137 assert( interpolate < TGSI_INTERPOLATE_COUNT );
142 declaration.Interpolate = interpolate;
208 di.Interpolate = TGSI_INTERPOLATE_CONSTANT;
217 tgsi_build_declaration_interp(unsigned interpolate,
225 di.Interpolate = interpolate;
412 full_decl->Declaration.Interpolate,
    [all...]
tgsi_two_side.c 81 ts->front_color_interp[decl->Semantic.Index] = decl->Interp.Interpolate;
110 decl.Declaration.Interpolate = 1;
115 decl.Interp.Interpolate = ts->front_color_interp[i];
  /external/skia/include/core/
SkScalar.h 182 /** Linearly interpolate between A and B, based on t.
185 else interpolate.
193 /** Interpolate along the function described by (keys[length], values[length])
  /external/skia/include/utils/
SkInterpolator.h 42 @param mirror If true, the odd repeats interpolate from the last key
55 @param reset If true, the odd repeats interpolate from the last key
124 /** Interpolate a cubic curve, typically to provide an ease-in ease-out transition.
  /external/skqp/include/core/
SkScalar.h 181 /** Linearly interpolate between A and B, based on t.
184 else interpolate.
192 /** Interpolate along the function described by (keys[length], values[length])
  /external/skqp/include/utils/
SkInterpolator.h 42 @param mirror If true, the odd repeats interpolate from the last key
55 @param reset If true, the odd repeats interpolate from the last key
124 /** Interpolate a cubic curve, typically to provide an ease-in ease-out transition.
  /frameworks/base/core/java/android/animation/
PathKeyframes.java 113 float x = interpolate(intervalFraction, startX, endX);
114 float y = interpolate(intervalFraction, startY, endY);
146 private static float interpolate(float fraction, float startValue, float endValue) { method in class:PathKeyframes
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 365 return new Rect(interpolate(startValue.left, endValue.left, fraction),
366 interpolate(startValue.top, endValue.top, fraction),
367 interpolate(startValue.right, endValue.right, fraction),
368 interpolate(startValue.bottom, endValue.bottom, fraction));
371 public int interpolate(int start, int end, float fraction) {
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 600 private static int interpolate(int start, int end, float fraction) { method in class:TvViewUiManager
609 out.topMargin = interpolate(startValue.topMargin, endValue.topMargin, fraction);
610 out.bottomMargin = interpolate(startValue.bottomMargin, endValue.bottomMargin, fraction);
612 interpolate(startValue.getMarginStart(), endValue.getMarginStart(), fraction)); method
613 out.setMarginEnd(interpolate(startValue.getMarginEnd(), endValue.getMarginEnd(), fraction)); method
614 out.width = interpolate(startValue.width, endValue.width, fraction);
615 out.height = interpolate(startValue.height, endValue.height, fraction);
  /frameworks/av/media/libaudioprocessing/
AudioResamplerSinc.cpp 79 // we use 15 bits to interpolate between these samples
432 interpolate<CHANNELS>(l, r, coefsP++, offset, lerpP, sP);
434 interpolate<CHANNELS>(l, r, coefsN++, offset, lerpN, sN);
478 // interpolate (step1)
482 // interpolate (step2)
486 // interpolate (step3)
549 // interpolate (step1)
554 // interpolate (step2)
559 // interpolate (step3)
596 void AudioResamplerSinc::interpolate( function in class:android::AudioResamplerSinc
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/display/
BrightnessMappingStrategyTest.java 199 final float nits = backlightToBrightness.interpolate(backlight);
465 final float y1 = GAMMA_CORRECTION_SPLINE.interpolate(x1);
466 final float y2 = GAMMA_CORRECTION_SPLINE.interpolate(x2);
467 final float y3 = GAMMA_CORRECTION_SPLINE.interpolate(x3);
493 final float y1 = GAMMA_CORRECTION_SPLINE.interpolate(x1);
494 final float y2 = GAMMA_CORRECTION_SPLINE.interpolate(x2);
495 final float y3 = GAMMA_CORRECTION_SPLINE.interpolate(x3);
539 final float y0 = GAMMA_CORRECTION_SPLINE.interpolate(x0);
540 final float y2 = GAMMA_CORRECTION_SPLINE.interpolate(x2);
541 final float y4 = GAMMA_CORRECTION_SPLINE.interpolate(x4)
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_advsimd_3DLUT.S 37 /* Y interpolate, front, lanes 0 and 1 -> v12 and v13 */
54 /* Y interpolate, rear, lanes 0 and 1 -> v14 and v15 */
62 /* Z interpolate, lane 0 v12/v14 -> v10 */
72 /* Z interpolate, lane 1 v13/v15 -> v11 */
82 /* X interpolate, lanes 0 and 1 v10,v11 -> v14 */
157 * interpolate, even though the fractional component is zero. Strictly this is
  /frameworks/base/core/tests/coretests/src/android/view/
PinchZoomAction.java 117 final float[][] stepsFirstFinger = interpolate(firstFingerStartCoords,
119 final float[][] stepsSecondFinger = interpolate(secondFingerStartCoords,
181 private static float[][] interpolate(float[] start, float[] end) { method in class:PinchZoomAction
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardClockPositionAlgorithm.java 19 import static com.android.systemui.statusbar.notification.NotificationUtils.interpolate;
157 result.clockX = (int) interpolate(0, burnInPreventionOffsetX(), mDarkAmount);
256 return interpolate(0, amplitude, interpolationAmount);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
WaveTableFloatFiller.java 74 // linear-interpolate
  /external/adhd/scripts/volume_tuning/
volume.js 215 // (3) If both exist, interpolate value for current point
240 // Interpolate value for point x
241 var interpolate = function(x) { function in function:generatePoints
260 result.push(quantize(interpolate(x)));

Completed in 729 milliseconds

1 23 4 5 6 7 8 91011>>