Lines Matching refs:SkOperand
28 fStorage = sk_malloc_throw((sizeof(SkOperand) * elemCount + sizeof(SkTimeCode)) * frameCount); in reset()
30 fValues = (SkOperand*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount); in reset()
33 fValuesArray = (SkOperand(*)[10]) fValues; in reset()
37 bool SkOperandInterpolator::setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar … in setKeyFrame()
51 SkOperand* dst = &fValues[fElemCount * index]; in setKeyFrame()
52 memcpy(dst, values, fElemCount * sizeof(SkOperand)); in setKeyFrame()
57 SkInterpolatorBase::Result SkOperandInterpolator::timeToValues(SkMSec time, SkOperand values[]) con… in timeToValues()
65 const SkOperand* nextSrc = &fValues[index * fElemCount]; in timeToValues()
73 const SkOperand* prevSrc = nextSrc - fElemCount; in timeToValues()
85 memcpy(values, prevSrc, sizeof(SkOperand) * fElemCount); in timeToValues()
97 static SkOperand* iset(SkOperand array[3], int a, int b, int c) in iset()
110 SkOperand v1[3], v2[3], v[3], vv[3]; in UnitTest()