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

/external/opencv/cxcore/src/
H A Dcxmathfuncs.cpp808 #undef EXPPOLY macro
809 #define EXPPOLY(x) \ macro
869 x0 = buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY( x0 );
870 x1 = buf[1].d * icvExpTab[val1 & EXPTAB_MASK] * EXPPOLY( x1 );
875 x2 = buf[2].d * icvExpTab[val2 & EXPTAB_MASK] * EXPPOLY( x2 );
876 x3 = buf[3].d * icvExpTab[val3 & EXPTAB_MASK] * EXPPOLY( x3 );
897 y[i] = (float)(buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY(x0));
914 #undef EXPPOLY macro
915 #define EXPPOLY(x) (((((A0*(x) + A1)*(x) + A2)*(x) + A3)*(x) + A4)*(x) + A5) macro
980 y0 = buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY( x
[all...]

Completed in 46 milliseconds