Searched refs:endInt (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DArgbEvaluator.java61 int endInt = (Integer) endValue;
62 float endA = ((endInt >> 24) & 0xff) / 255.0f;
63 float endR = ((endInt >> 16) & 0xff) / 255.0f;
64 float endG = ((endInt >> 8) & 0xff) / 255.0f;
65 float endB = ( endInt & 0xff) / 255.0f;
/frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/
H A DArgbEvaluator.java70 int endInt = (Integer) endValue;
71 float endA = ((endInt >> 24) & 0xff) / 255.0f;
72 float endR = ((endInt >> 16) & 0xff) / 255.0f;
73 float endG = ((endInt >> 8) & 0xff) / 255.0f;
74 float endB = ((endInt) & 0xff) / 255.0f;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DMultiProducerActivity.java291 static int evaluate(float fraction, int startInt, int endInt) { argument
297 int endA = (endInt >> 24) & 0xff;
298 int endR = (endInt >> 16) & 0xff;
299 int endG = (endInt >> 8) & 0xff;
300 int endB = endInt & 0xff;

Completed in 65 milliseconds