Searched refs:endG (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DArgbEvaluator.java64 float endG = ((endInt >> 8) & 0xff) / 255.0f;
73 endG = (float) Math.pow(endG, 2.2);
79 float g = startG + fraction * (endG - startG);
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DArgbEvaluator.java72 float endG = ((endInt >> 8) & 0xff) / 255.0f;
81 endG = (float) Math.pow(endG, 2.2);
87 float g = startG + fraction * (endG - startG);
/frameworks/base/libs/hwui/tests/common/
H A DTestUtils.cpp43 int endG = (end >> 8) & 0xff; local
48 | (int)((startG + (int)(fraction * (endG - startG))) << 8)
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DMultiProducerActivity.java299 int endG = (endInt >> 8) & 0xff;
304 (int)((startG + (int)(fraction * (endG - startG))) << 8) |
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java319 int endG = (endInt >> 8) & 0xff;
324 | (int) ((startG + (int) (fraction * (endG - startG))) << 8)

Completed in 3846 milliseconds