Home
last modified time | relevance | path

Searched refs:Interpolator (Results 1 – 16 of 16) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_shader_fragment.h44 struct Interpolator { struct
58 bool load_interpolated(GPRVector &dest, ShaderInput &io, const Interpolator& ip, argument
60 …bool load_interpolated_one_comp(GPRVector &dest, ShaderInput& io, const Interpolator& ip, EAluOp o…
61 …bool load_interpolated_two_comp(GPRVector &dest, ShaderInput& io, const Interpolator& ip,EAluOp op…
63 … ShaderInput& io, const Interpolator& ip, EAluOp op, int start, int comp);
85 std::array<Interpolator, 6> m_interpolator;
Dsfn_shader_fragment.cpp494 Interpolator ip = {true, 0, slope.reg_i(1), slope.reg_i(0)}; in emit_interp_deref_at_sample()
546 Interpolator ip = {true, 0, help.reg_i(1), help.reg_i(0)}; in emit_interp_deref_at_offset()
653 ShaderInput& io, const Interpolator &ip, in load_interpolated()
707 … ShaderInput& io, const Interpolator& ip, EAluOp op) in load_interpolated_one_comp()
727 … const Interpolator& ip, EAluOp op, int writemask) in load_interpolated_two_comp()
742 … ShaderInput& io, const Interpolator& ip, in load_interpolated_two_comp_for_one()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DKeyframeParser.java7 import android.view.animation.Interpolator;
26 private static final Interpolator LINEAR_INTERPOLATOR = new LinearInterpolator();
27 private static SparseArrayCompat<WeakReference<Interpolator>> pathInterpolatorCache;
40 private static SparseArrayCompat<WeakReference<Interpolator>> pathInterpolatorCache() { in pathInterpolatorCache()
48 private static WeakReference<Interpolator> getInterpolator(int hash) { in getInterpolator()
56 private static void putInterpolator(int hash, WeakReference<Interpolator> interpolator) { in putInterpolator()
86 Interpolator interpolator = null; in parseKeyframe()
135 WeakReference<Interpolator> interpolatorRef = getInterpolator(hash); in parseKeyframe()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/value/
DLottieInterpolatedValue.java3 import android.view.animation.Interpolator;
10 private final Interpolator interpolator;
16 LottieInterpolatedValue(T startValue, T endValue, Interpolator interpolator) { in LottieInterpolatedValue()
DKeyframe.java6 import android.view.animation.Interpolator;
17 @Nullable public final Interpolator interpolator;
38 @Nullable Interpolator interpolator, float startFrame, @Nullable Float endFrame) { in Keyframe()
DLottieInterpolatedFloatValue.java3 import android.view.animation.Interpolator;
14 public LottieInterpolatedFloatValue(Float startValue, Float endValue, Interpolator interpolator) { in LottieInterpolatedFloatValue()
DLottieInterpolatedIntegerValue.java3 import android.view.animation.Interpolator;
14 …public LottieInterpolatedIntegerValue(Integer startValue, Integer endValue, Interpolator interpola… in LottieInterpolatedIntegerValue()
DLottieInterpolatedPointValue.java4 import android.view.animation.Interpolator;
16 …public LottieInterpolatedPointValue(PointF startValue, PointF endValue, Interpolator interpolator)… in LottieInterpolatedPointValue()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAnimationUtils.java6 import android.view.animation.Interpolator;
19 protected static Interpolator loadInterpolator(Context context, int id) { in loadInterpolator()
/external/replicaisland/src/com/replica/replicaisland/
DMovementComponent.java26 private static Interpolator sInterpolator = new Interpolator();
DInterpolator.java25 public class Interpolator extends AllocationGuard { class
31 public Interpolator() { in Interpolator() method in Interpolator
/external/skia/src/ports/
DSkTypeface_mac_ct.cpp332 using Interpolator = LinearInterpolater<int, CGFloat, CGFloatIdentity>; in SkCTFontCTWeightForCSSWeight() typedef
337 static Interpolator::Mapping nativeWeightMappings[11]; in SkCTFontCTWeightForCSSWeight()
346 static constexpr Interpolator nativeInterpolator( in SkCTFontCTWeightForCSSWeight()
358 using Interpolator = LinearInterpolater<CGFloat, int, RoundCGFloatToInt>; in ct_weight_to_fontstyle() typedef
363 static Interpolator::Mapping nativeWeightMappings[11]; in ct_weight_to_fontstyle()
364 static Interpolator::Mapping dataProviderWeightMappings[11]; in ct_weight_to_fontstyle()
377 static constexpr Interpolator nativeInterpolator( in ct_weight_to_fontstyle()
379 static constexpr Interpolator dataProviderInterpolator( in ct_weight_to_fontstyle()
388 using Interpolator = LinearInterpolater<int, CGFloat, CGFloatIdentity>; in SkCTFontCTWidthForCSSWidth() typedef
392 static constexpr Interpolator::Mapping widthMappings[] = { in SkCTFontCTWidthForCSSWidth()
[all …]
/external/lottie/LottieSample/src/main/kotlin/com/airbnb/lottie/samples/
DAppIntroActivity.kt8 import android.view.animation.Interpolator in <lambda>()
82 val scroller = object : Scroller(this, interpolator.get(null) as Interpolator) { in <lambda>()
/external/skqp/src/ports/
DSkFontHost_mac.cpp589 using Interpolator = LinearInterpolater<int, CGFloat, CGFloatIdentity>; typedef
594 static Interpolator::Mapping nativeWeightMappings[11];
603 static constexpr Interpolator nativeInterpolator(
616 using Interpolator = LinearInterpolater<CGFloat, int, RoundCGFloatToInt>; in ct_weight_to_fontstyle() typedef
625 static constexpr Interpolator::Mapping dataProviderWeightMappings[] = { in ct_weight_to_fontstyle()
638 static constexpr Interpolator dataProviderInterpolator( in ct_weight_to_fontstyle()
641 static Interpolator::Mapping nativeWeightMappings[11]; in ct_weight_to_fontstyle()
650 static constexpr Interpolator nativeInterpolator( in ct_weight_to_fontstyle()
659 using Interpolator = LinearInterpolater<int, CGFloat, CGFloatIdentity>; in fontstyle_to_ct_width() typedef
663 static constexpr Interpolator::Mapping widthMappings[] = { in fontstyle_to_ct_width()
[all …]
/external/skqp/tests/
DInterpolatorTest.cpp19 DEF_TEST(Interpolator, reporter) { in DEF_TEST() argument
/external/deqp/framework/common/
DtcuRasterizationVerifier.cpp657 template <typename Interpolator>
662 const Interpolator& interpolator) in verifyTriangleGroupInterpolationWithInterpolator()