Searched defs:Poly4 (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/services/audioflinger/
H A DAudioResamplerFirGen.h222 inline double Poly4(double A, double B, double C, double D, double x) { function in namespace:android
256 inline double Poly4(double A, double B, double C, double D, double x, double x2) { function in namespace:android
260 inline double Poly4(double A, double B, double C, double D, double x) { function in namespace:android
261 return Poly4(A, B, C, D, x, x * x);
267 return Poly4(A, B, C, D, x, x2) + Poly3(E, F, G, x, x2) * (x2 * x2);
272 return Poly4(A, B, C, D, x, x2) + Poly4(E, F, G, H, x, x2) * x4;
279 // It does not seem faster to explicitly decompose Poly8 into Poly4, but
284 double val = Poly4(A, B, C, D, x, x2);
286 return val + Poly4(
[all...]

Completed in 98 milliseconds