Lines Matching refs:SkFDot6
28 static inline SkFixed SkFDot6ToFixedDiv2(SkFDot6 value) { in SkFDot6ToFixedDiv2()
56 SkFDot6 x0, y0, x1, y1; in setLine()
95 const SkFDot6 dy = SkEdge_Compute_DY(top, y0); in setLine()
137 const SkFDot6 dy = SkEdge_Compute_DY(top, y0); in updateLine()
171 static inline SkFDot6 cheap_distance(SkFDot6 dx, SkFDot6 dy) in cheap_distance()
183 static inline int diff_to_shift(SkFDot6 dx, SkFDot6 dy, int shiftAA = 2) in diff_to_shift()
186 SkFDot6 dist = cheap_distance(dx, dy); in diff_to_shift()
201 SkFDot6 x0, y0, x1, y1, x2, y2; in setQuadraticWithoutUpdate()
241 SkFDot6 dx = (SkLeftShift(x1, 1) - x0 - x2) >> 2; in setQuadraticWithoutUpdate()
242 SkFDot6 dy = (SkLeftShift(y1, 1) - y0 - y2) >> 2; in setQuadraticWithoutUpdate()
349 static inline int SkFDot6UpShift(SkFDot6 x, int upShift) { in SkFDot6UpShift()
362 static SkFDot6 cubic_delta_from_line(SkFDot6 a, SkFDot6 b, SkFDot6 c, SkFDot6 d) in cubic_delta_from_line()
365 SkFDot6 oneThird = (a*8 - b*15 + 6*c + d) * 19 >> 9; in cubic_delta_from_line()
366 SkFDot6 twoThird = (a + 6*b - c*15 + d*8) * 19 >> 9; in cubic_delta_from_line()
372 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; in setCubicWithoutUpdate()
420 SkFDot6 dx = cubic_delta_from_line(x0, x1, x2, x3); in setCubicWithoutUpdate()
421 SkFDot6 dy = cubic_delta_from_line(y0, y1, y2, y3); in setCubicWithoutUpdate()