Searched refs:lutpos (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
H A DInterpolator.cpp100 float lutpos = input * mSize; local
101 if (lutpos >= (mSize - 1)) {
106 weight = modff(lutpos, &ipart);
112 " i1=%d, i2=%d, input=%f, lutpos=%f, size=%zu, values=%p, ipart=%f, weight=%f",
113 i1, i2, input, lutpos, mSize, mValues.get(), ipart, weight);
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
H A DNativeInterpolatorFactoryHelper_Delegate.java107 float lutpos = input * mSize;
108 if (lutpos >= (mSize - 1)) {
112 int ipart = (int) lutpos;
113 float weight = lutpos - ipart;

Completed in 925 milliseconds