Home
last modified time | relevance | path

Searched refs:fElemCount (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/utils/
DSkInterpolator.cpp29 fElemCount = SkToU8(elemCount); in reset()
176 SkScalar* dst = &fValues[fElemCount * index]; in setKeyFrame()
177 memcpy(dst, values, fElemCount * sizeof(SkScalar)); in setKeyFrame()
189 const SkScalar* nextSrc = &fValues[index * fElemCount]; in timeToValues()
192 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
196 const SkScalar* prevSrc = nextSrc - fElemCount; in timeToValues()
198 for (int i = fElemCount - 1; i >= 0; --i) { in timeToValues()
/external/skia/include/utils/
DSkInterpolator.h73 uint8_t fElemCount; variable