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

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/basis/
ImprovedNoise.java 66 return ImprovedNoise.lerp(
68 ImprovedNoise.lerp(
70 ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[AA], x, y, z),
72 ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[AB], x, y - 1, z), // RESULTS
74 ImprovedNoise.lerp(v,
75 ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[AA + 1], x, y, z - 1), // CORNERS
77 ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[AB + 1], x, y - 1, z - 1),
85 static final float lerp(final float t, final float a, final float b) { method in class:ImprovedNoise
  /external/replicaisland/src/com/replica/replicaisland/
Lerp.java 19 public final class Lerp {
21 public static float lerp(float start, float target, float duration, float timeSinceStart) method in class:Lerp
FadeDrawableComponent.java 102 opacity = Lerp.lerp(mInitialOpacity, mTargetOpacity, mDuration, elapsed);
104 opacity = Lerp.ease(mInitialOpacity, mTargetOpacity, mDuration, elapsed);
  /frameworks/native/opengl/libagl/
primitives.cpp 556 c->lerp.initLine(v0, v1);
584 c->lerp.initTriangle(v0, v1, v2);
635 c->lerp.initLerp(v0, enables);
647 const compute_iterators_t& lerp = c->lerp; local
654 lerp.iterators1616(&itc[i*3], c0, c1, c2);
669 lerp.iterators0032(itz64, v0z, v1z, v2z);
676 lerp.iterators0032(itz, v0z, v1z, v2z);
680 lerp.iterators0032(itz, v0z, v1z, v2z);
687 lerp.iterators1616(itf, v0->fog, v1->fog, v2->fog)
702 const compute_iterators_t& lerp = c->lerp; local
718 const compute_iterators_t& lerp = c->lerp; local
762 const compute_iterators_t& lerp = c->lerp; local
    [all...]
context.h 614 compute_iterators_t lerp; __attribute__((aligned(32))); member in struct:android::gl::ogles_context_t
  /frameworks/av/services/audioflinger/
AudioResamplerSinc.h 61 int32_t lerp, const int16_t* samples);
AudioResamplerSinc.cpp     [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...]
  /frameworks/native/opengl/tests/angeles/
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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DeadZone.java 84 static float lerp(float a, float b, float f) { method in class:DeadZone
96 return (int) lerp(mSizeMax, mSizeMin, (float) (dt - mHold) / mDecay);
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 194 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
195 lerp(y1, y2, alpha), 1.0f);
245 private static final float lerp(float a, float b, float alpha) { method in class:Input
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
NoiseGenerator.java 655 return NoiseMath.lerp(floorZ, NoiseMath.lerp(floorY, NoiseMath.lerp(floorX, NoiseMath.grad(hash[AA], x, y, z),
657 NoiseMath.lerp(floorX, NoiseMath.grad(hash[AB], x, y - 1, z),
659 NoiseMath.lerp(floorY, NoiseMath.lerp(floorX, NoiseMath.grad(hash[AA + 1], x, y, z - 1),
661 NoiseMath.lerp(floorX, NoiseMath.grad(hash[AB + 1], x, y - 1, z - 1),
700 float a = NoiseMath.lerp(sx, u, v);
706 float b = NoiseMath.lerp(sx, u, v);
708 float c = NoiseMath.lerp(sy, a, b);
816 public static float lerp(float t, float a, float b) { method in class:NoiseGenerator.NoiseMath
    [all...]
  /external/eigen/demos/opengl/
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);
camera.h 26 Frame lerp(float alpha, const Frame& other) const function in class:Frame
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BeanBag.java 66 static float lerp(float a, float b, float f) { method in class:BeanBag.Board
71 return lerp(a, b, sRNG.nextFloat());
199 final float scale = lerp(MIN_SCALE,MAX_SCALE,z);
  /frameworks/base/core/java/android/util/
MathUtils.java 147 public static float lerp(float start, float stop, float amount) { method in class:MathUtils
  /external/skia/legacy/src/core/
SkScalerContext.cpp 391 static int lerp(int start, int end) { function
400 r = lerp(r, ave);
401 g = lerp(g, ave);
402 b = lerp(b, ave);
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 123 // Linear interpolation (lerp) is unnecessary if there are no sharp
132 // insufficient (it subsamples the color space) and we need to lerp.
142 SkPMColor lerp = SkFastFourByteInterp(cache[index1], cache[index0], remainder); local
146 sk_memset32_dither(dstC, lerp, dlerp, count);
SkTwoPointConicalGradient.cpp 59 static float lerp(float x, float dx, float t) { function
105 float r = lerp(fRadius, fDRadius, t);
108 r = lerp(fRadius, fDRadius, t);
  /frameworks/base/libs/androidfw/
InputTransport.cpp 61 inline static float lerp(float a, float b, float alpha) { function in namespace:android
767 lerp(currentCoords.getX(), otherCoords.getX(), alpha));
769 lerp(currentCoords.getY(), otherCoords.getY(), alpha));
    [all...]
  /frameworks/base/services/java/com/android/server/power/
DisplayPowerController.java 1119 private static float lerp(float x, float y, float alpha) { method in class:DisplayPowerController
    [all...]
  /prebuilts/devtools/tools/lib/
chimpchat.jar 
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 298 static float lerp(float a, float b, float f) { method in class:PhotoTable
303 return lerp(a, b, sRNG.nextFloat());
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/polarclock/
PolarClockWallpaper.java 486 c.translate(s + MathUtils.lerp(s, -s, mOffsetX), t);
  /external/skia/legacy/src/effects/
SkGradientShader.cpp 922 // insufficient (it subsamples the color space) and we need to lerp.
931 // Linear interpolation (lerp) is unnecessary if there are no sharp
940 // insufficient (it subsamples the color space) and we need to lerp.
    [all...]

Completed in 1046 milliseconds