Lines Matching refs:dst
31 static void fromFloat(SkScalar dst[], const float src[], int n) {
33 dst[i] = SkFloatToScalar(src[i]);
37 static void toFloat(float dst[], const SkScalar src[], int n) {
39 dst[i] = SkScalarToFloat(src[i]);
56 static void anp_copy(ANPMatrix* dst, const ANPMatrix* src) {
57 *dst = *src;
60 static void anp_get3x3(const ANPMatrix* matrix, float dst[9]) {
62 dst[i] = SkScalarToFloat(matrix->get(i));
116 static bool anp_invert(ANPMatrix* dst, const ANPMatrix* src) {
117 return src->invert(dst);
120 static void anp_mapPoints(ANPMatrix* matrix, float dst[], const float src[],
123 matrix->mapPoints(reinterpret_cast<SkPoint*>(dst),
135 toFloat(dst, &tmp[0].fX, n*2);