Home
last modified time | relevance | path

Searched defs:lerp (Results 1 – 25 of 68) sorted by relevance

123

/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dcompatibility.hpp38 …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/
DMiscUtils.java51 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/
DCMakeLists.txt8 add_executable(lerp lerp-study.cpp) target
Dlerp-study.cpp85 static Stats check_lerp(Lerp lerp) { in check_lerp()
/external/pytorch/aten/src/ATen/native/
DLerp.h21 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/
DDynamicActivity.kt97 …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/
Dfloat.rs9 fn lerp(self, rhs: Self, s: Self) -> Self; in lerp() method
/external/rust/android-crates-io/crates/glam/src/f64/
Dfloat.rs7 fn lerp(self, rhs: f64, t: f64) -> f64 { in lerp() method
/external/rust/android-crates-io/crates/glam/src/f32/
Dfloat.rs7 fn lerp(self, rhs: f32, t: f32) -> f32 { in lerp() method
/external/replicaisland/src/com/replica/replicaisland/
DLerp.java21 public static float lerp(float start, float target, float duration, float timeSinceStart) in lerp() method in Lerp
/external/eigen/demos/opengl/
Dquaternion_demo.cpp117 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
Dcamera.h26 Frame lerp(float alpha, const Frame& other) const in lerp() function
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/
DGradientColor.java30 public void lerp(GradientColor gc1, GradientColor gc2, float progress) { in lerp() method in GradientColor
/external/libmonet/utils/
DMathUtils.java45 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/
DDynamicPropertiesExamplesPage.kt160 private fun lerp(valueA: Float, valueB: Float, progress: Float): Float { in lerp() method
/external/fonttools/Tests/cu2qu/
Dcu2qu_test.py144 def lerp(cls, p1, p2, t): member in CurveToQuadraticTest
/external/skia/modules/skottie/src/text/
DTextAnimator.cpp137 const auto lerp = [](float v0, float v1, float t) { in modulateProps() local
/external/skia/modules/skottie/src/layers/shapelayer/
DPuckerBloat.cpp33 static SkPoint lerp(const SkPoint& p0, const SkPoint& p1, SkScalar t) { in lerp() function
DGradient.cpp200 auto lerp = [](float a, float b, float t) { return a + t * (b - a); }; in onSync() local
/external/skia/gm/
Dtrickycubicstrokes.cpp95 static SkPoint lerp(const SkPoint& a, const SkPoint& b, float T) { in lerp() function
/external/swiftshader/third_party/marl/examples/
Dfractal.cpp60 inline float lerp(float x, float min, float max) { in lerp() function
/external/lottie/sample/src/main/kotlin/com/airbnb/lottie/samples/utils/
DTypeExtensions.kt66 fun Float.lerp(other: Float, amount: Float): Float = this + amount * (other - this) in Float() method
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dflow_control.cc188 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/
Dflow_control.cc232 auto lerp = [](double t, double t_min, double t_max, double a, double b) { in TargetInitialWindowSizeBasedOnMemoryPressureAndBdp() local
/external/skia/tools/viewer/
DFitCubicToCircleSlide.cpp87 static double lerp(double x, double y, double T) { in lerp() function

123