Searched defs:interpolate (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/util/
H A DSpline.java32 public abstract float interpolate(float x); method in class:Spline
183 public float interpolate(float x) { method in class:Spline.MonotoneCubicSpline
252 public float interpolate(float x) { method in class:Spline.LinearSpline
/frameworks/av/media/libstagefright/
H A DClockEstimator.cpp86 double WindowedLinearFitEstimator::LinearFit::interpolate(double x) { function in class:android::WindowedLinearFitEstimator::LinearFit
164 return total.interpolate(x);
/frameworks/base/libs/hwui/
H A DInterpolator.cpp33 float AccelerateDecelerateInterpolator::interpolate(float input) { function in class:android::uirenderer::AccelerateDecelerateInterpolator
37 float AccelerateInterpolator::interpolate(float input) { function in class:android::uirenderer::AccelerateInterpolator
45 float AnticipateInterpolator::interpolate(float t) { function in class:android::uirenderer::AnticipateInterpolator
57 float AnticipateOvershootInterpolator::interpolate(float t) { function in class:android::uirenderer::AnticipateOvershootInterpolator
66 float BounceInterpolator::interpolate(float t) { function in class:android::uirenderer::BounceInterpolator
74 float CycleInterpolator::interpolate(float input) { function in class:android::uirenderer::CycleInterpolator
78 float DecelerateInterpolator::interpolate(float input) { function in class:android::uirenderer::DecelerateInterpolator
88 float OvershootInterpolator::interpolate(float t) { function in class:android::uirenderer::OvershootInterpolator
103 float LUTInterpolator::interpolate(float input) { function in class:android::uirenderer::LUTInterpolator
H A DInterpolator.h30 virtual float interpolate(float input) = 0;
40 virtual float interpolate(float input);
46 virtual float interpolate(float input);
55 virtual float interpolate(float input);
63 virtual float interpolate(float input);
70 virtual float interpolate(float input);
76 virtual float interpolate(float input);
84 virtual float interpolate(float input);
91 virtual float interpolate(float input) { return input; } function in class:android::uirenderer::LinearInterpolator
97 virtual float interpolate(floa
[all...]
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java112 float x = interpolate(intervalFraction, startX, endX);
113 float y = interpolate(intervalFraction, startY, endY);
149 private static float interpolate(float fraction, float startValue, float endValue) { method in class:PathKeyframes
/frameworks/av/services/audioflinger/
H A DAudioResamplerFirProcess.h114 TC interpolate(TC coef_0, TC coef_1, TINTERP lerp) function in namespace:android
121 int16_t interpolate<int16_t, uint32_t>(int16_t coef_0, int16_t coef_1, uint32_t lerp) function in namespace:android
128 int32_t interpolate<int32_t, uint32_t>(int32_t coef_0, int32_t coef_1, uint32_t lerp) function in namespace:android
138 return interpolate(coef_0, coef_1, lerp);
144 return interpolate(coef_0, coef_1, lerp);
H A DAudioResamplerSinc.cpp328 // we use 15 bits to interpolate between these samples
675 interpolate<CHANNELS>(l, r, coefsP++, offset, lerpP, sP);
677 interpolate<CHANNELS>(l, r, coefsN++, offset, lerpN, sN);
721 // interpolate (step1)
725 // interpolate (step2)
729 // interpolate (step3)
792 // interpolate (step1)
797 // interpolate (step2)
802 // interpolate (step3)
839 void AudioResamplerSinc::interpolate( function in class:android::AudioResamplerSinc
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java1171 mHeader.setY(interpolate(getQsExpansionFraction(), -mHeader.getHeight(), 0));
1182 // take the maximum and linearly interpolate with the panel expansion for a nice motion.
1190 return (int) interpolate(getExpandedFraction(),
1198 return interpolate(getQsExpansionFraction(),
1347 // On Keyguard, interpolate the QS expansion linearly to the panel expansion
1351 // In Shade, interpolate linearly such that QS is closed whenever panel height is
1894 private static float interpolate(float t, float start, float end) { method in class:NotificationPanelView

Completed in 197 milliseconds