Lines Matching defs:x0
284 magtype x0 = (magtype)x[i], y0 = (magtype)y[i]; \
287 x0 = x0*x0 + y0*y0; \
289 mag[i] = x0; \
291 x0 = (magtype)x[i+2], y0 = (magtype)y[i+2]; \
293 x0 = x0*x0 + y0*y0; \
295 mag[i+2] = x0; \
301 magtype x0 = (magtype)x[i], y0 = (magtype)y[i]; \
302 mag[i] = x0*x0 + y0*y0; \
825 double x0 = x[i].f * exp_prescale;
832 x0 = x[i].i < 0 ? -exp_max_val : exp_max_val;
843 val0 = cvRound(x0);
848 x0 = (x0 - val0)*exp_postscale;
869 x0 = buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY( x0 );
872 y[i] = (float)x0;
884 double x0 = x[i].f * exp_prescale;
888 x0 = x[i].i < 0 ? -exp_max_val : exp_max_val;
890 val0 = cvRound(x0);
895 x0 = (x0 - val0)*exp_postscale;
897 y[i] = (float)(buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY(x0));
930 double x0 = x[i].f * exp_prescale;
940 x0 = t < 0 ? -exp_max_val : exp_max_val;
954 val0 = cvRound(x0);
959 x0 = (x0 - val0)*exp_postscale;
980 y0 = buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY( x0 );
995 double x0 = x[i].f * exp_prescale;
1000 x0 = t < 0 ? -exp_max_val : exp_max_val;
1002 val0 = cvRound(x0);
1007 x0 = (x0 - val0)*exp_postscale;
1009 y[i] = buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY( x0 );
1396 double x0, x1, x2, x3;
1417 x0 = LOGTAB_TRANSLATE( buf[0].f, h0 );
1435 y0 += LOGPOLY( x0, h0 == 510 );
1451 double x0, y0;
1459 x0 = LOGTAB_TRANSLATE( buf[0].f, h0 );
1460 y0 += LOGPOLY( x0, h0 == 510 );
1496 double x0, x1, x2, x3;
1527 x0 = LOGTAB_TRANSLATE( buf[0].d, h0 );
1545 y0 += LOGPOLY( x0, h0 == 510 );
1562 double x0, y0 = (((h0 >> 20) & 0x7ff) - 1023) * ln_2;
1569 x0 = LOGTAB_TRANSLATE( buf[0].d, h0 );
1570 y0 += LOGPOLY( x0, h0 == 510 );