/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | compatibility.hpp | 38 …template <typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);} … in lerp() function 39 …template <typename T, precision P> GLM_FUNC_QUALIFIER tvec2<T, P> lerp(const tvec2<T, P>& x, const… in lerp() function 41 …template <typename T, precision P> GLM_FUNC_QUALIFIER tvec3<T, P> lerp(const tvec3<T, P>& x, const… in lerp() function 42 …template <typename T, precision P> GLM_FUNC_QUALIFIER tvec4<T, P> lerp(const tvec4<T, P>& x, const… in lerp() function 43 …template <typename T, precision P> GLM_FUNC_QUALIFIER tvec2<T, P> lerp(const tvec2<T, P>& x, const… in lerp() function 44 …template <typename T, precision P> GLM_FUNC_QUALIFIER tvec3<T, P> lerp(const tvec3<T, P>& x, const… in lerp() function 45 …template <typename T, precision P> GLM_FUNC_QUALIFIER tvec4<T, P> lerp(const tvec4<T, P>& x, const… in lerp() function
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/ |
D | MiscUtils.java | 51 public static float lerp(float a, float b, @FloatRange(from = 0f, to = 1f) float percentage) { in lerp() method in MiscUtils 55 public static double lerp(double a, double b, @FloatRange(from = 0f, to = 1f) double percentage) { in lerp() method in MiscUtils 59 public static int lerp(int a, int b, @FloatRange(from = 0f, to = 1f) float percentage) { in lerp() method in MiscUtils
|
/external/skia/experimental/lowp-basic/ |
D | CMakeLists.txt | 8 add_executable(lerp lerp-study.cpp) target
|
D | lerp-study.cpp | 85 static Stats check_lerp(Lerp lerp) { in check_lerp()
|
/external/pytorch/aten/src/ATen/native/ |
D | Lerp.h | 21 C10_HOST_DEVICE C10_ALWAYS_INLINE scalar_t lerp(scalar_t self_, scalar_t end_, weight_t weight_) { in lerp() function
|
/external/lottie/sample/src/main/kotlin/com/airbnb/lottie/samples/ |
D | DynamicActivity.kt | 97 …fun lerp(a: Float, b: Float, @FloatRange(from = 0.0, to = 1.0) percentage: Float) = a + percentage… in <lambda>() method
|
/external/rust/android-crates-io/crates/glam/src/ |
D | float.rs | 9 fn lerp(self, rhs: Self, s: Self) -> Self; in lerp() method
|
/external/rust/android-crates-io/crates/glam/src/f64/ |
D | float.rs | 7 fn lerp(self, rhs: f64, t: f64) -> f64 { in lerp() method
|
/external/rust/android-crates-io/crates/glam/src/f32/ |
D | float.rs | 7 fn lerp(self, rhs: f32, t: f32) -> f32 { in lerp() method
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | Lerp.java | 21 public static float lerp(float start, float target, float duration, float timeSinceStart) in lerp() method in Lerp
|
/external/eigen/demos/opengl/ |
D | quaternion_demo.cpp | 117 template<typename T> T lerp(float t, const T& a, const T& b) in lerp() function 123 template<> Quaternionf lerp(float t, const Quaternionf& a, const Quaternionf& b) in lerp() function 189 template<> EulerAngles<float> lerp(float t, const EulerAngles<float>& a, const EulerAngles<float>& … in lerp() function
|
D | camera.h | 26 Frame lerp(float alpha, const Frame& other) const in lerp() function
|
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/ |
D | GradientColor.java | 30 public void lerp(GradientColor gc1, GradientColor gc2, float progress) { in lerp() method in GradientColor
|
/external/libmonet/utils/ |
D | MathUtils.java | 45 public static double lerp(double start, double stop, double amount) { in lerp() method in MathUtils
|
/external/lottie/sample-compose/src/main/java/com/airbnb/lottie/sample/compose/examples/ |
D | DynamicPropertiesExamplesPage.kt | 160 private fun lerp(valueA: Float, valueB: Float, progress: Float): Float { in lerp() method
|
/external/fonttools/Tests/cu2qu/ |
D | cu2qu_test.py | 144 def lerp(cls, p1, p2, t): member in CurveToQuadraticTest
|
/external/skia/modules/skottie/src/text/ |
D | TextAnimator.cpp | 137 const auto lerp = [](float v0, float v1, float t) { in modulateProps() local
|
/external/skia/modules/skottie/src/layers/shapelayer/ |
D | PuckerBloat.cpp | 33 static SkPoint lerp(const SkPoint& p0, const SkPoint& p1, SkScalar t) { in lerp() function
|
D | Gradient.cpp | 200 auto lerp = [](float a, float b, float t) { return a + t * (b - a); }; in onSync() local
|
/external/skia/gm/ |
D | trickycubicstrokes.cpp | 95 static SkPoint lerp(const SkPoint& a, const SkPoint& b, float T) { in lerp() function
|
/external/swiftshader/third_party/marl/examples/ |
D | fractal.cpp | 60 inline float lerp(float x, float min, float max) { in lerp() function
|
/external/lottie/sample/src/main/kotlin/com/airbnb/lottie/samples/utils/ |
D | TypeExtensions.kt | 66 fun Float.lerp(other: Float, amount: Float): Float = this + amount * (other - this) in Float() method
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | flow_control.cc | 188 auto lerp = [](double t, double t_min, double t_max, double a, double b) { in TargetInitialWindowSizeBasedOnMemoryPressureAndBdp() local
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/ |
D | flow_control.cc | 232 auto lerp = [](double t, double t_min, double t_max, double a, double b) { in TargetInitialWindowSizeBasedOnMemoryPressureAndBdp() local
|
/external/skia/tools/viewer/ |
D | FitCubicToCircleSlide.cpp | 87 static double lerp(double x, double y, double T) { in lerp() function
|