Searched refs:interp (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp15 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
16 delete interp;
21 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
22 interp->reset(valueCount, frameCount);
27 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
38 interp->setKeyFrame(index, msec, scalars, blend);
43 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
47 interp->setRepeatCount(repeatCount);
48 interp->setMirror(mirror != 0);
53 SkInterpolator* interp local
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.h93 static audio_coef_t interp(audio_coef_t lo, audio_coef_t hi, uint32_t frac);
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/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/services/audioflinger/
H A DAudioResamplerCubic.cpp82 out[outputIndex++] += vl * interp(&left, x);
83 out[outputIndex++] += vr * interp(&right, x);
150 sample = interp(&left, x);
H A DAudioResamplerCubic.h50 static inline int32_t interp(state* p, int32_t x) { function in class:android::AudioResamplerCubic
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java80 public void applyToTaskView(View v, int duration, Interpolator interp, boolean allowLayers, argument
114 .setInterpolator(interp)
/frameworks/base/core/java/android/widget/
H A DEdgeEffect.java359 final float interp = mInterpolator.getInterpolation(t);
361 mGlowAlpha = mGlowAlphaStart + (mGlowAlphaFinish - mGlowAlphaStart) * interp;
362 mGlowScaleY = mGlowScaleYStart + (mGlowScaleYFinish - mGlowScaleYStart) * interp;
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DPointCloud.java198 private float interp(float min, float max, float f) { method in class:PointCloud
208 final float pointSize = interp(MAX_POINT_SIZE, MIN_POINT_SIZE,
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedStateListDrawable.java278 final FrameInterpolator interp = new FrameInterpolator(ad, reversed);
281 anim.setDuration(interp.getTotalDuration());
282 anim.setInterpolator(interp);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java2767 DecelerateInterpolator interp = new DecelerateInterpolator(1.5f);
2772 .setInterpolator(interp)
2796 AccelerateInterpolator interp = new AccelerateInterpolator(1.5f);
2799 .setInterpolator(interp)
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1317 /// sizeInterp - compute the size of the .interp section
1326 LDSection& interp = getOutputFormat()->getInterp(); local
1327 interp.setSize(std::strlen(dyld_name) + 1);
1330 /// emitInterp - emit the .interp
1334 const LDSection& interp = getOutputFormat()->getInterp(); local
1335 MemoryRegion region = pOutput.request(interp.offset(), interp.size());
1342 std::memcpy(region.begin(), dyld_name, interp.size());
1433 // handle .interp and .note.* sections

Completed in 6113 milliseconds