HomeSort by relevance Sort by last modified time
    Searched refs:lutpos (Results 1 - 2 of 2) sorted by null

  /frameworks/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java 119 float lutpos = input * (mSize - 1); local
120 if (lutpos >= (mSize - 1)) {
124 int ipart = (int) lutpos;
125 float weight = lutpos - ipart;
  /frameworks/base/libs/hwui/
Interpolator.cpp 135 float lutpos = input * (mSize - 1); local
136 if (lutpos >= (mSize - 1)) {
141 weight = modff(lutpos, &ipart);
147 " i1=%d, i2=%d, input=%f, lutpos=%f, size=%zu, values=%p, ipart=%f, weight=%f",
148 i1, i2, input, lutpos, mSize, mValues.get(), ipart, weight);

Completed in 174 milliseconds