Lines Matching defs:tmp
84 SkConic tmp[2];
85 if (conic.chopAt(stopT, tmp)) {
86 dst->conicTo(tmp[0].fPts[1], tmp[0].fPts[2], tmp[0].fW);
91 SkConic tmp[2];
92 if (conic.chopAt(startT, tmp)) {
93 dst->conicTo(tmp[1].fPts[1], tmp[1].fPts[2], tmp[1].fW);
96 SkConic tmp;
97 conic.chopAt(startT, stopT, &tmp);
98 dst->conicTo(tmp.fPts[1], tmp.fPts[2], tmp.fW);
211 SkPoint tmp[5];
214 SkChopQuadAtHalf(pts, tmp);
215 distance = this->compute_quad_segs(tmp, distance, mint, halft, ptIndex);
216 distance = this->compute_quad_segs(&tmp[2], distance, halft, maxt, ptIndex);
264 SkPoint tmp[7];
267 SkChopCubicAtHalf(pts, tmp);
268 distance = this->compute_cubic_segs(tmp, distance, mint, halft, ptIndex);
269 distance = this->compute_cubic_segs(&tmp[3], distance, halft, maxt, ptIndex);