/external/libchrome/ui/gfx/geometry/ |
D | quaternion_unittest.cc | 115 TEST(QuatTest, Lerp) { in TEST() argument 120 Quaternion interpolated = a.Lerp(b, t); in TEST() 127 CompareQuaternions(a.Normalized(), a.Lerp(b, 0)); in TEST() 128 CompareQuaternions(b.Normalized(), a.Lerp(b, 1)); in TEST() 129 CompareQuaternions(Quaternion(1, 1, 1, 1).Normalized(), a.Lerp(b, 0.5)); in TEST()
|
D | quaternion.h | 60 Quaternion Lerp(const Quaternion& q, double t) const;
|
D | quaternion.cc | 80 Quaternion Quaternion::Lerp(const Quaternion& q, double t) const { in Lerp() function in gfx::Quaternion
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | TimeSystem.java | 75 scale = Lerp.ease(1.0f, mTargetScale, EASE_DURATION, scaleTime); in update() 79 scale = Lerp.ease(mTargetScale, 1.0f, EASE_DURATION, easeOutTime); in update()
|
D | FadeDrawableComponent.java | 102 opacity = Lerp.lerp(mInitialOpacity, mTargetOpacity, mDuration, elapsed); in update() 104 opacity = Lerp.ease(mInitialOpacity, mTargetOpacity, mDuration, elapsed); in update()
|
D | CameraSystem.java | 116 mCurrentCameraPosition.x = Lerp.ease(mPreInterpolateCameraPosition.x, in update() 119 mCurrentCameraPosition.y = Lerp.ease(mPreInterpolateCameraPosition.y, in update()
|
D | Lerp.java | 19 public final class Lerp { class
|
/external/skqp/modules/skottie/src/ |
D | SkottieValue.cpp | 31 void ValueTraits<ScalarValue>::Lerp(const ScalarValue& v0, const ScalarValue& v1, float t, in Lerp() function in skottie::ValueTraits 55 void ValueTraits<VectorValue>::Lerp(const VectorValue& v0, const VectorValue& v1, float t, in Lerp() function in skottie::ValueTraits 62 ValueTraits<ScalarValue>::Lerp(v0[i], v1[i], t, &(*result)[i]); in Lerp() 184 void ValueTraits<ShapeValue>::Lerp(const ShapeValue& v0, const ShapeValue& v1, float t, in Lerp() function in skottie::ValueTraits 307 void ValueTraits<TextValue>::Lerp(const TextValue& v0, const TextValue&, float, TextValue* result) { in Lerp() function in skottie::ValueTraits
|
D | SkottieValue.h | 36 static void Lerp(const T&, const T&, float, T*);
|
D | SkottieAnimator.cpp | 240 ValueTraits<T>::Lerp(v0, v1, lt, v); in eval()
|
/external/skia/modules/skottie/src/animator/ |
D | VectorKeyframeAnimator.cpp | 114 new_val = Lerp(Sk4f::Load(v0), Sk4f::Load(v1), lerp_info.weight); in onSeek() 126 const auto new_val = Lerp(*v0++, *v1++, lerp_info.weight); in onSeek()
|
D | ScalarKeyframeAnimator.cpp | 61 *fTarget = Lerp(lerp_info.vrec0.flt, lerp_info.vrec1.flt, lerp_info.weight); in onSeek()
|
D | KeyframeAnimator.h | 135 T Lerp(const T& a, const T& b, float t) { return a + (b - a) * t; } in Lerp() function
|
D | Vec2KeyframeAnimator.cpp | 200 return this->update(Lerp(v0.v2, v1.v2, lerp_info.weight), tan); in onSeek()
|
/external/skia/include/core/ |
D | SkColorFilter.h | 85 static sk_sp<SkColorFilter> Lerp(float t, sk_sp<SkColorFilter> dst, sk_sp<SkColorFilter> src);
|
D | SkShader.h | 141 static sk_sp<SkShader> Lerp(float t, sk_sp<SkShader> dst, sk_sp<SkShader> src);
|
/external/skia/samplecode/ |
D | SampleMixer.cpp | 45 paint.setColorFilter(SkColorFilters::Lerp(fWeight, cf0, cf1)); in dodraw()
|
/external/skia/gm/ |
D | mixercolorfilter.cpp | 121 paint.setColorFilter(SkColorFilters::Lerp(t, cf0, cf1)); in mixRow()
|
D | colorfilterimagefilter.cpp | 268 return SkShaders::Lerp(t, a, sh); in __anone7f6f8310102() 274 return SkShaders::Lerp(t, a, SkShaders::Blend(mode, a, b)); in __anone7f6f8310202()
|
/external/skia/bench/ |
D | ColorFilterBench.cpp | 183 []() { return SkColorFilters::Lerp(0.3f, in __anonb80003540a02()
|
/external/skia/src/shaders/ |
D | SkComposeShader.cpp | 54 sk_sp<SkShader> SkShaders::Lerp(float weight, sk_sp<SkShader> dst, sk_sp<SkShader> src) { in Lerp() function in SkShaders
|
/external/toolchain-utils/cros_utils/ |
D | tabulator_test.py | 78 c3 = tabulator.Color.Lerp(0.5, c1, c2)
|
D | tabulator.py | 790 def Lerp(cls, ratio, a, b): member in Color 854 ret = Color.Lerp(value, high_color, mid_color) 858 ret = Color.Lerp(value, low_color, mid_color)
|
/external/skia/modules/sksg/src/ |
D | SkSGColorFilter.cpp | 220 return SkColorFilters::Lerp(fWeight, nullptr, std::move(gradientCF)); in onRevalidateFilter()
|
/external/walt/ios/WALT/ |
D | DragLatencyController.mm | 45 static T Lerp(const T& x0, const T& x1, double alpha) { function 78 y.push_back(Lerp(yp[ip - 1], yp[ip], alpha));
|