Home
last modified time | relevance | path

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

/external/skia/src/animator/
DSkOperandIterpolator.cpp53 SkOperand* dst = &fValues[fElemCount * index]; in setKeyFrame()
54 memcpy(dst, values, fElemCount * sizeof(SkOperand)); in setKeyFrame()
67 const SkOperand* nextSrc = &fValues[index * fElemCount]; in timeToValues()
70 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
75 const SkOperand* prevSrc = nextSrc - fElemCount; in timeToValues()
78 for (int i = fElemCount - 1; i >= 0; --i) in timeToValues()
81 for (int i = fElemCount - 1; i >= 0; --i) { in timeToValues()
87 memcpy(values, prevSrc, sizeof(SkOperand) * fElemCount); in timeToValues()
DSkOperandInterpolator.h22 int getValuesCount() { return fFrameCount * fElemCount; } in getValuesCount()
/external/skia/src/utils/
DSkInterpolator.cpp28 fElemCount = SkToU8(elemCount); in reset()
175 SkScalar* dst = &fValues[fElemCount * index]; in setKeyFrame()
176 memcpy(dst, values, fElemCount * sizeof(SkScalar)); in setKeyFrame()
188 const SkScalar* nextSrc = &fValues[index * fElemCount]; in timeToValues()
191 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
195 const SkScalar* prevSrc = nextSrc - fElemCount; in timeToValues()
197 for (int i = fElemCount - 1; i >= 0; --i) { in timeToValues()
/external/skia/include/utils/
DSkInterpolator.h73 uint8_t fElemCount; variable