Lines Matching defs:dst
254 SkConic dst[4];
256 int cnt = chop_conic(controlPts, dst, weight);
275 SkPoint* pts = dst[c].fPts;
335 // dst[0] is the original conic. If it returns 2 the dst[0]
336 // and dst[1] are the two new conics.
337 int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) {
340 if (dst) {
341 dst[0].set(src, weight);
345 if (dst) {
348 conic.chopAt(t, dst);
357 int chop_conic(const SkPoint src[3], SkConic dst[4], const SkScalar weight) {
361 int conicCnt2 = split_conic(dstTemp[0].fPts, dst, dstTemp[0].fW);
362 conicCnt = conicCnt2 + split_conic(dstTemp[1].fPts, &dst[conicCnt2], dstTemp[1].fW);
364 dst[0] = dstTemp[0];