Lines Matching refs:Dot14
209 typedef int Dot14; typedef
215 static inline Dot14 Dot14Mul(Dot14 a, Dot14 b) { in Dot14Mul()
219 static inline Dot14 eval_cubic(Dot14 t, Dot14 A, Dot14 B, Dot14 C) { in eval_cubic()
223 static inline Dot14 pin_and_convert(SkScalar x) { in pin_and_convert()
236 Dot14 x = pin_and_convert(value); in SkUnitCubicInterp()
241 Dot14 b = pin_and_convert(bx); in SkUnitCubicInterp()
242 Dot14 c = pin_and_convert(cx); in SkUnitCubicInterp()
248 Dot14 A = 3*b; in SkUnitCubicInterp()
249 Dot14 B = 3*(c - 2*b); in SkUnitCubicInterp()
250 Dot14 C = 3*(b - c) + Dot14_ONE; in SkUnitCubicInterp()
253 Dot14 t = Dot14_HALF; in SkUnitCubicInterp()
254 Dot14 dt = Dot14_HALF; in SkUnitCubicInterp()
257 Dot14 guess = eval_cubic(t, A, B, C); in SkUnitCubicInterp()