Lines Matching refs:y2
182 SkFDot6 x0, y0, x1, y1, x2, y2; in setQuadraticWithoutUpdate() local
191 y2 = SkScalarRoundToFDot6(pts[2].fY, shift); in setQuadraticWithoutUpdate()
199 y2 = int(pts[2].fY * scale); in setQuadraticWithoutUpdate()
204 if (y0 > y2) in setQuadraticWithoutUpdate()
208 swap(y0, y2); in setQuadraticWithoutUpdate()
211 SkASSERT(y0 <= y1 && y1 <= y2); in setQuadraticWithoutUpdate()
214 int bot = SkFDot6Round(y2); in setQuadraticWithoutUpdate()
223 SkFDot6 dy = (SkLeftShift(y1, 1) - y0 - y2) >> 2; in setQuadraticWithoutUpdate()
268 A = SkFDot6ToFixedDiv2(y0 - y1 - y1 + y2); // 1/2 the real value in setQuadraticWithoutUpdate()
276 fQLastY = SkFDot6ToFixed(y2); in setQuadraticWithoutUpdate()
352 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; in setCubicWithoutUpdate() local
361 y2 = SkScalarRoundToFDot6(pts[2].fY, shift); in setCubicWithoutUpdate()
371 y2 = int(pts[2].fY * scale); in setCubicWithoutUpdate()
384 swap(y1, y2); in setCubicWithoutUpdate()
401 SkFDot6 dy = cubic_delta_from_line(y0, y1, y2, y3); in setCubicWithoutUpdate()
437 C = SkFDot6UpShift(3 * (y0 - y1 - y1 + y2), upShift); in setCubicWithoutUpdate()
438 D = SkFDot6UpShift(y3 + 3 * (y1 - y2) - y0, upShift); in setCubicWithoutUpdate()