Searched defs:interp (Results 1 - 6 of 6) sorted by relevance

/frameworks/rs/
H A DrsAnimation.cpp49 uint32_t valueCount, RsAnimationInterpolation interp,
74 a->mInterpolation = interp;
126 RsAnimationInterpolation interp,
130 Animation *a = NULL;//Animation::create(rsc, inValues, outValues, valueCount, interp, pre, post);
122 rsi_AnimationCreate(Context *rsc, const float *inValues, const float *outValues, uint32_t valueCount, RsAnimationInterpolation interp, RsAnimationEdge pre, RsAnimationEdge post) argument
/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.cpp72 out[d] = interp(out[d], tempCoef[d], fracCoord[dim]);
78 audio_coef_t AudioCoefInterpolator::interp(audio_coef_t lo, audio_coef_t hi, function in class:android::AudioCoefInterpolator
/frameworks/av/services/audioflinger/
H A DAudioResamplerCubic.h50 static inline int32_t interp(state* p, int32_t x) { function in class:android::AudioResamplerCubic
/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp13 static void Interpolator_destructor(JNIEnv* env, jobject clazz, SkInterpolator* interp) argument
15 delete interp;
18 static void Interpolator_reset(JNIEnv* env, jobject clazz, SkInterpolator* interp, int valueCount, int frameCount) argument
20 interp->reset(valueCount, frameCount);
23 static void Interpolator_setKeyFrame(JNIEnv* env, jobject clazz, SkInterpolator* interp, int index, int msec, jfloatArray valueArray, jfloatArray blendArray) argument
46 interp->setKeyFrame(index, msec, scalars, blend);
49 static void Interpolator_setRepeatMirror(JNIEnv* env, jobject clazz, SkInterpolator* interp, float repeatCount, jboolean mirror) argument
54 interp->setRepeatCount(SkFloatToScalar(repeatCount));
55 interp->setMirror(mirror != 0);
58 static int Interpolator_timeToValues(JNIEnv* env, jobject clazz, SkInterpolator* interp, in argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DPointCloud.java199 private float interp(float min, float max, float f) { method in class:PointCloud
209 final float pointSize = interp(MAX_POINT_SIZE, MIN_POINT_SIZE,
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1080 /// sizeInterp - compute the size of the .interp section
1091 LDSection& interp = getExecFileFormat()->getInterp(); local
1092 interp.setSize(std::strlen(dyld_name) + 1);
1095 /// emitInterp - emit the .interp
1102 const LDSection& interp = getExecFileFormat()->getInterp(); local
1104 interp.offset(), interp.size());
1111 std::memcpy(region->start(), dyld_name, interp.size());
1176 // handle .interp

Completed in 753 milliseconds