Home | History | Annotate | Download | only in srce

Lines Matching refs:temp

99   register int32_t x0, x1, x2, x3, x4, x5, x6, x7, temp;
114 temp = x0;
117 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, (temp - x4),
118 x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
126 temp = x2;
129 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8, (temp - x6),
130 x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
146 temp = x1;
148 x5 = temp - x5;
156 temp = x3;
159 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8, (temp - x7),
160 x7); /*x7 = ( temp - x7 ) * cos(3*pi/8) ;*/
184 int32_t temp;
187 temp = 0;
189 /*temp += (int32_t)(((int64_t)M[(Index*strEncParams->numOfSubBands*2)+k] *
191 temp += (gas16AnalDCTcoeff8[(Index * 8 * 2) + k] * (pInVect[k] >> 16));
192 temp +=
196 pOutVect[Index] = temp;
231 int32_t temp, x2;
235 temp = (pInVect[0] + pInVect[4]);
236 SBC_IDCT_MULT((SBC_COS_PI_SUR_4 >> 1), temp, tmp[0]);
239 temp = (pInVect[1] + pInVect[3]);
240 SBC_IDCT_MULT((SBC_COS_3PI_SUR_8 >> 1), temp, tmp[3]);
241 SBC_IDCT_MULT((SBC_COS_PI_SUR_8 >> 1), temp, tmp[2]);
242 temp = (pInVect[5] - pInVect[7]);
243 SBC_IDCT_MULT((SBC_COS_3PI_SUR_8 >> 1), temp, tmp[5]);
244 SBC_IDCT_MULT((SBC_COS_PI_SUR_8 >> 1), temp, tmp[4]);
253 int32_t temp;
256 temp = 0;
258 /*temp += (int32_t)(((int64_t)M[(Index*strEncParams->numOfSubBands*2)+k] *
260 temp += (gas16AnalDCTcoeff4[(Index * 4 * 2) + k] * (pInVect[k] >> 16));
261 temp +=
265 pOutVect[Index] = temp;