Home | History | Annotate | Download | only in core

Lines Matching refs:right

22     int right = 0;
23 while (right < length && searchKey > keys[right])
24 right++;
27 if (length == right)
29 if (0 == right)
31 // Otherwise, interpolate between right - 1 and right.
32 SkScalar rightKey = keys[right];
33 SkScalar leftKey = keys[right-1];
35 return SkScalarInterp(values[right-1], values[right], fract);