Lines Matching refs:coeffs
126 __constant float coeffs[64] =
193 __constant float * coeffs_y = coeffs + (ay << 1), * coeffs_x = coeffs + (ax << 1);
240 inline void interpolateCubic( float x, float* coeffs )
244 coeffs[0] = fma(fma(fma(A, (x + 1.f), - 5.0f*A), (x + 1.f), 8.0f*A), x + 1.f, - 4.0f*A);
245 coeffs[1] = fma(fma(A + 2.f, x, - (A + 3.f)), x*x, 1.f);
246 coeffs[2] = fma(fma(A + 2.f, 1.f - x, - (A + 3.f)), (1.f - x)*(1.f - x), 1.f);
247 coeffs[3] = 1.f - coeffs[0] - coeffs[1] - coeffs[2];
252 __constant float coeffs[128] =
334 __constant float * coeffs_y = coeffs + (ay << 2), * coeffs_x = coeffs + (ax << 2);