Home
last modified time | relevance | path

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

/external/skia/src/animator/
DSkOperandIterpolator.cpp51 SkOperand* dst = &fValues[fElemCount * index]; in setKeyFrame()
52 memcpy(dst, values, fElemCount * sizeof(SkOperand)); in setKeyFrame()
65 const SkOperand* nextSrc = &fValues[index * fElemCount]; in timeToValues()
68 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
73 const SkOperand* prevSrc = nextSrc - fElemCount; in timeToValues()
76 for (int i = fElemCount - 1; i >= 0; --i) in timeToValues()
79 for (int i = fElemCount - 1; i >= 0; --i) { in timeToValues()
85 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