Searched refs:ifx (Results 1 - 3 of 3) sorted by relevance

/external/bison/build-aux/
H A Dtexinfo.tex4 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
110 \ifx\inputlineno\thisisundefined
117 \ifx\putwordAppendix\undefined \gdef\putwordAppendix{Appendix}\fi
118 \ifx\putwordChapter\undefined \gdef\putwordChapter{Chapter}\fi
119 \ifx\putworderror\undefined \gdef\putworderror{error}\fi
120 \ifx\putwordfile\undefined \gdef\putwordfile{file}\fi
121 \ifx\putwordin\undefined \gdef\putwordin{in}\fi
122 \ifx\putwordIndexIsEmpty\undefined \gdef\putwordIndexIsEmpty{(Index is empty)}\fi
123 \ifx\putwordIndexNonexistent\undefined \gdef\putwordIndexNonexistent{(Index is nonexistent)}\fi
124 \ifx\putwordInf
[all...]
/external/opencv/cv/src/
H A Dcvimgwarp.cpp469 int ifx = xofs[dx].ialpha, sx0 = xofs[dx].idx; \
474 sum = x*icvCubicCoeffs[(ICV_CUBIC_TAB_SIZE - ifx)*2 + 1]; \
477 sum += x*icvCubicCoeffs[(ICV_CUBIC_TAB_SIZE - ifx)*2]; \
480 sum += x*icvCubicCoeffs[ifx*2]; \
483 row[dx] = sum + x*icvCubicCoeffs[ifx*2 + 1]; \
488 int ifx = xofs[dx].ialpha; \
490 row[dx] = _src[sx0 - cn]*icvCubicCoeffs[ifx*2 + 1] + \
491 _src[sx0]*icvCubicCoeffs[ifx*2] + \
492 _src[sx0 + cn]*icvCubicCoeffs[(ICV_CUBIC_TAB_SIZE-ifx)*2] + \
493 _src[sx0 + cn*2]*icvCubicCoeffs[(ICV_CUBIC_TAB_SIZE-ifx)*
915 int ifx = cvRound(fx*ICV_CUBIC_TAB_SIZE); local
[all...]
H A Dcvundistort.cpp54 float ifx = 1.f/fx, ify = 1.f/fy; local
67 float x = (u - u0)*ifx, x2 = x*x, r2 = x2 + y2, _2xy = 2*x*y;
193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local
232 ifx = 1.f/fx; ify = 1.f/fy;
246 float x = (u - u0)*ifx, x2 = x*x, r2 = x2 + y2, _2xy = 2*x*y;
379 double A[3][3], RR[3][3], k[5]={0,0,0,0,0}, fx, fy, ifx, ify, cx, cy; local
437 ifx = 1./fx;
456 x0 = x = (x - cx)*ifx;

Completed in 197 milliseconds