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

/external/libopus/celt/arm/
H A Dcelt_ne10_mdct.c118 kiss_fft_cpx yc; local
127 yc.r = yr;
128 yc.i = yi;
129 f2[i] = yc;
/external/libopus/celt/
H A Dmdct.c197 kiss_fft_cpx yc; local
206 yc.r = yr;
207 yc.i = yi;
208 yc.r = PSHR32(MULT16_32_Q16(scale, yc.r), scale_shift);
209 yc.i = PSHR32(MULT16_32_Q16(scale, yc.i), scale_shift);
210 f2[st->bitrev[i]] = yc;
/external/libopus/celt/mips/
H A Dmdct_mipsr1.h140 kiss_fft_cpx yc; local
151 yc.r = yr;
152 yc.i = yi;
153 yc.r = PSHR32(MULT16_32_Q16(scale, yc.r), scale_shift);
154 yc.i = PSHR32(MULT16_32_Q16(scale, yc.i), scale_shift);
155 f2[st->bitrev[i]] = yc;
/external/opencv/cv/src/
H A Dcvcamshift.cpp173 double a, b, c, xc, yc; local
226 yc = cvRound( m01 * inv_m00 + windowIn.y );
261 int _yc = cvRound( yc );
H A Dcvhough.cpp225 float xc, yc; local
301 yc = (float) row + 0.5f;
305 t = (float) fabs( cvFastArctan( yc, xc ) * d2r );
306 r = (float) sqrt( (double)xc * xc + (double)yc * yc );
370 yc = (float) y[index] + 0.5f;
374 t = (float) fabs( cvFastArctan( yc, xc ) * d2r );
375 r = (float) sqrt( (double)xc * xc + (double)yc * yc ) * isrho;
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
H A DSpecialFunctionsImpl.h573 Scalar ans, ax, c, yc, r, t, y, z; local
599 yc = y * c;
600 pk = pkm1 * z - pkm2 * yc;
601 qk = qkm1 * z - qkm2 * yc;
/external/ImageMagick/MagickCore/
H A Ddistort.c2217 { double xc,yc;
2223 yc = ((double)image->rows-1.0)/2.0 + image->page.y;
2227 if ( fabs(coeff[8]-xc-0.5) < 0.1 && fabs(coeff[9]-yc-0.5) < 0.1 )
2228 (void) FormatLocaleFile(stderr, " -fx 'xc=(w-1)/2; yc=(h-1)/2;\n");
2230 (void) FormatLocaleFile(stderr, " -fx 'xc=%lf; yc=%lf;\n",
2233 " ii=i-xc; jj=j-yc; rr=hypot(ii,jj);\n");
2240 (void) FormatLocaleFile(stderr, " v.p{fx*ii+xc,fy*jj+yc}' \\\n");
2211 { double xc,yc; local
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c697 get_next_xcoord(unsigned face, unsigned fall_off_index, int max, int xc, int yc) argument
723 return yc;
727 return max - yc;
735 get_next_ycoord(unsigned face, unsigned fall_off_index, int max, int xc, int yc) argument
738 return yc;

Completed in 280 milliseconds