Searched refs:startInt (Results 1 – 3 of 3) sorted by relevance
58 int startInt = (Integer) startValue; in evaluate() local59 float startA = ((startInt >> 24) & 0xff) / 255.0f; in evaluate()60 float startR = ((startInt >> 16) & 0xff) / 255.0f; in evaluate()61 float startG = ((startInt >> 8) & 0xff) / 255.0f; in evaluate()62 float startB = ( startInt & 0xff) / 255.0f; in evaluate()
39 int startInt = startValue; in evaluate() local40 return (int)(startInt + fraction * (endValue - startInt)); in evaluate()
291 static int evaluate(float fraction, int startInt, int endInt) { in evaluate() argument292 int startA = (startInt >> 24) & 0xff; in evaluate()293 int startR = (startInt >> 16) & 0xff; in evaluate()294 int startG = (startInt >> 8) & 0xff; in evaluate()295 int startB = startInt & 0xff; in evaluate()