Home | History | Annotate | Download | only in vega

Lines Matching full:coeffs

432    const double (*coeffs)[4][4];
434 coeffs = (x < 0.25) ? coeffs3Low : coeffs3High;
437 c0 = rational_function(x, coeffs[0][0])
438 + cos2 * rational_function(x, coeffs[0][1])
439 + cos4 * rational_function(x, coeffs[0][2])
440 + cos6 * rational_function(x, coeffs[0][3]);
442 c1 = rational_function(x, coeffs[1][0])
443 + cos2 * rational_function(x, coeffs[1][1])
444 + cos4 * rational_function(x, coeffs[1][2])
445 + cos6 * rational_function(x, coeffs[1][3]);