Lines Matching refs:Dot14
207 typedef int Dot14; typedef
213 static inline Dot14 Dot14Mul(Dot14 a, Dot14 b) { in Dot14Mul()
217 static inline Dot14 eval_cubic(Dot14 t, Dot14 A, Dot14 B, Dot14 C) { in eval_cubic()
221 static inline Dot14 pin_and_convert(SkScalar x) { in pin_and_convert()
234 Dot14 x = pin_and_convert(value); in SkUnitCubicInterp()
239 Dot14 b = pin_and_convert(bx); in SkUnitCubicInterp()
240 Dot14 c = pin_and_convert(cx); in SkUnitCubicInterp()
246 Dot14 A = 3*b; in SkUnitCubicInterp()
247 Dot14 B = 3*(c - 2*b); in SkUnitCubicInterp()
248 Dot14 C = 3*(b - c) + Dot14_ONE; in SkUnitCubicInterp()
251 Dot14 t = Dot14_HALF; in SkUnitCubicInterp()
252 Dot14 dt = Dot14_HALF; in SkUnitCubicInterp()
255 Dot14 guess = eval_cubic(t, A, B, C); in SkUnitCubicInterp()