HomeSort by relevance Sort by last modified time
    Searched defs:lerp (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/qcms/src/
transform_util.h 39 static inline float lerp(float a, float b, float t) function
  /external/eigen/demos/opengl/
camera.h 26 Frame lerp(float alpha, const Frame& other) const function in class:Frame
quaternion_demo.cpp 117 template<typename T> T lerp(float t, const T& a, const T& b) function
123 template<> Quaternionf lerp(float t, const Quaternionf& a, const Quaternionf& b) function
131 return Frame(lerp(alpha,a.position,b.position),
132 Quaternionf(lerp(alpha,OrientationType(a.orientation),OrientationType(b.orientation))));
189 template<> EulerAngles<float> lerp(float t, const EulerAngles<float>& a, const EulerAngles<float>& b) function
192 res.coeffs() = lerp(t, a.coeffs(), b.coeffs());
531 aux1 = aux0.lerp(duration/2,mInitFrame);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
vec2.js 354 vec2.lerp = function (out, a, b, t) {
vec3.js 377 vec3.lerp = function (out, a, b, t) {
vec4.js 379 vec4.lerp = function (out, a, b, t) {
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkTwoPointConicalGradient.cpp 74 static float lerp(float x, float dx, float t) { function
124 float r = lerp(fRec.fRadius, fRec.fDRadius, t);
127 r = lerp(fRec.fRadius, fRec.fDRadius, t);
SkLinearGradient.cpp 128 // Linear interpolation (lerp) is unnecessary if there are no sharp
137 // insufficient (it subsamples the color space) and we need to lerp.
147 SkPMColor lerp = SkFastFourByteInterp(cache[index1], cache[index0], remainder); local
151 sk_memset32_dither(dstC, lerp, dlerp, count);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
gl-matrix.js 456 vec2.lerp = function (out, a, b, t) {
963 vec3.lerp = function (out, a, b, t) {
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
RawConverter.java 420 private static double lerp(double a, double b, double f) { method in class:RawConverter
432 private static void lerp(float[] a, float[] b, double f, /*out*/float[] result) { method in class:RawConverter
434 result[i] = (float) lerp(a[i], b[i], f);
518 lerp(XYZToCamera1, XYZToCamera2, interpFactor, interpXYZToCamera); method
591 lerp(calibrationTransform1, calibrationTransform2, interpolationFactor, method
611 lerp(forwardTransform1, forwardTransform2, interpolationFactor, /*out*/intermediate); method
    [all...]
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 704 float lerp[5]; local
724 lerp[a] = (cam->src[a] + cam->dest[a] * trackPos) * 0.01f;
729 cX = lerp[0];
730 cY = lerp[1];
731 cZ = lerp[2];
732 eX = cX - (float)cos(lerp[3]) * dist;
733 eY = cY - (float)sin(lerp[3]) * dist;
734 eZ = cZ - lerp[4];
738 eX = lerp[0];
739 eY = lerp[1]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_sample.c 70 lerp(float a, float v0, float v1) function
88 const float temp0 = lerp(a, v00, v10);
89 const float temp1 = lerp(a, v01, v11);
90 return lerp(b, temp0, temp1);
104 return lerp(c, temp0, temp1);
1201 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]);
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 70 lerp(float a, float v0, float v1) function
88 const float temp0 = lerp(a, v00, v10);
89 const float temp1 = lerp(a, v01, v11);
90 return lerp(b, temp0, temp1);
104 return lerp(c, temp0, temp1);
1201 rgba[TGSI_NUM_CHANNELS*c] = lerp(xw, tx0[c], tx1[c]);
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js     [all...]

Completed in 775 milliseconds