Lines Matching refs:SkOperand
30 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount); in reset()
32 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount); in reset()
35 fValuesArray = (SkOperand(*)[10]) fValues; in reset()
39 bool SkOperandInterpolator::setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar … in setKeyFrame()
53 SkOperand* dst = &fValues[fElemCount * index]; in setKeyFrame()
54 memcpy(dst, values, fElemCount * sizeof(SkOperand)); in setKeyFrame()
59 SkInterpolatorBase::Result SkOperandInterpolator::timeToValues(SkMSec time, SkOperand values[]) con… in timeToValues()
67 const SkOperand* nextSrc = &fValues[index * fElemCount]; in timeToValues()
75 const SkOperand* prevSrc = nextSrc - fElemCount; in timeToValues()
87 memcpy(values, prevSrc, sizeof(SkOperand) * fElemCount); in timeToValues()
99 static SkOperand* iset(SkOperand array[3], int a, int b, int c) in iset()
112 SkOperand v1[3], v2[3], v[3], vv[3]; in UnitTest()