Searched refs:interp (Results 1 - 12 of 12) sorted by last modified time

/frameworks/rs/
H A DrsAnimation.cpp49 uint32_t valueCount, RsAnimationInterpolation interp,
74 a->mInterpolation = interp;
126 RsAnimationInterpolation interp,
130 Animation *a = nullptr;//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/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1261 /// sizeInterp - compute the size of the .interp section
1269 LDSection& interp = getOutputFormat()->getInterp(); local
1270 interp.setSize(std::strlen(dyld_name) + 1);
1273 /// emitInterp - emit the .interp
1276 const LDSection& interp = getOutputFormat()->getInterp(); local
1277 MemoryRegion region = pOutput.request(interp.offset(), interp.size());
1284 std::memcpy(region.begin(), dyld_name, interp.size());
1379 // handle .interp and .note.* sections
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimationProps.java210 Interpolator interp = mPropInterpolators.get(propertyType);
211 if (interp != null) {
212 return interp;
/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/core/jni/android/graphics/
H A DInterpolator.cpp14 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
15 delete interp;
20 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
21 interp->reset(valueCount, frameCount);
26 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
37 interp->setKeyFrame(index, msec, scalars, blend);
42 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
46 interp->setRepeatCount(repeatCount);
47 interp->setMirror(mirror != 0);
52 SkInterpolator* interp local
[all...]
/frameworks/base/core/java/android/widget/
H A DEdgeEffect.java360 final float interp = mInterpolator.getInterpolation(t);
362 mGlowAlpha = mGlowAlphaStart + (mGlowAlphaFinish - mGlowAlphaStart) * interp;
363 mGlowScaleY = mGlowScaleYStart + (mGlowScaleYFinish - mGlowScaleYStart) * interp;
/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
H A DAudioCoefInterpolator.h93 static audio_coef_t interp(audio_coef_t lo, audio_coef_t hi, uint32_t frac);
/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
H A DAudioResamplerFirProcessNeon.h92 int16x4_t interp; local
94 interp = vdup_n_s16(lerpP);
95 //interp = (int16x4_t)vset_lane_s32 ((int32x2_t)lerpP, interp, 0);
121 posCoef1 = vqrdmulhq_lane_s16(posCoef1, interp, 0);
122 negCoef = vqrdmulhq_lane_s16(negCoef, interp, 0);
200 int32x2_t interp; local
202 interp = vdup_n_s32(lerpP);
256 posCoef1.val[0] = vqrdmulhq_lane_s32(posCoef1.val[0], interp, 0);
257 posCoef1.val[1] = vqrdmulhq_lane_s32(posCoef1.val[1], interp,
375 float32x2_t interp; local
[all...]

Completed in 221 milliseconds