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

/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
H A DNativeInterpolatorFactoryHelper_Delegate.java119 float lutpos = input * (mSize - 1);
120 if (lutpos >= (mSize - 1)) {
124 int ipart = (int) lutpos;
125 float weight = lutpos - ipart;
/frameworks/base/libs/hwui/
H A DInterpolator.cpp135 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 83 milliseconds