Lines Matching refs:fCoeff
176 t = sk_float_pow(x / fCoeff[0].fX, 1.0f / 3); in computeYFromX()
178 t = compute_t_from_x(fCoeff[0].fX, fCoeff[1].fX, fCoeff[2].fX, x); in computeYFromX()
180 float a = fCoeff[0].fY; in computeYFromX()
181 float b = fCoeff[1].fY; in computeYFromX()
182 float c = fCoeff[2].fY; in computeYFromX()
199 (Sk2s(1) + s1 - s2).store(&fCoeff[0]); in setPts()
200 (s2 - s1 - s1).store(&fCoeff[1]); in setPts()
201 s1.store(&fCoeff[2]); in setPts()
206 } else if (coeff_nearly_zero(fCoeff[1].fX) && coeff_nearly_zero(fCoeff[2].fX)) { in setPts()
212 Sk2s a = Sk2s::Load(&fCoeff[0]); in computeFromT()
213 Sk2s b = Sk2s::Load(&fCoeff[1]); in computeFromT()
214 Sk2s c = Sk2s::Load(&fCoeff[2]); in computeFromT()