Lines Matching defs:x2
87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp;
94 x2 = (pInVect[2] + pInVect[6]) >>1;
106 /* rearrangement of x2 and x6 as in (15) */
107 x2 -=x6;
110 /* 2-point IDCT of x2 and x6 and post-multiplication as in (15) */
112 temp = x2 ;
113 SBC_IDCT_MULT(SBC_COS_PI_SUR_8,( x2 + x6 ), x2); /*x2 = ( x2 + x6 ) * cos(1*pi/8) ; */
116 /* 4-point IDCT of x0,x2,x4 and x6 as in (11) */
117 res_even[ 0 ] = x0 + x2 ;
120 res_even[ 3 ] = x0 - x2 ;
209 SINT32 temp,x2;
212 x2=pInVect[2]>>1;
215 tmp[1]=x2-tmp[0];
216 tmp[0]+=x2;