Lines Matching refs:temp2

91   int32_t  temp1, temp2;         /* intermediate variable for computation */  in fdct8x8theora_ref()  local
137 temp2=xC2S6*irot_input_y; in fdct8x8theora_ref()
138 temp2=DOROUND(temp2); in fdct8x8theora_ref()
139 temp2>>=16; in fdct8x8theora_ref()
140 ip[2] = temp1 + temp2; in fdct8x8theora_ref()
145 temp2=xC2S6*irot_input_x ; in fdct8x8theora_ref()
146 temp2=DOROUND(temp2); in fdct8x8theora_ref()
147 temp2>>=16; in fdct8x8theora_ref()
148 ip[6] = temp1 -temp2 ; in fdct8x8theora_ref()
159 temp2=xC7S1*irot_input_y; in fdct8x8theora_ref()
160 temp2=DOROUND(temp2); in fdct8x8theora_ref()
161 temp2>>=16; in fdct8x8theora_ref()
162 ip[1] = temp1 - temp2; in fdct8x8theora_ref()
167 temp2=xC1S7*irot_input_y ; in fdct8x8theora_ref()
168 temp2=DOROUND(temp2); in fdct8x8theora_ref()
169 temp2>>=16; in fdct8x8theora_ref()
170 ip[7] = temp1 + temp2 ; in fdct8x8theora_ref()
180 temp2=xC5S3*irot_input_y ; in fdct8x8theora_ref()
181 temp2=DOROUND(temp2); in fdct8x8theora_ref()
182 temp2>>=16; in fdct8x8theora_ref()
183 ip[3] = temp1 - temp2 ; in fdct8x8theora_ref()
188 temp2=xC3S5*irot_input_y; in fdct8x8theora_ref()
189 temp2=DOROUND(temp2); in fdct8x8theora_ref()
190 temp2>>=16; in fdct8x8theora_ref()
191 ip[5] = temp1 + temp2; in fdct8x8theora_ref()
227 temp2 = xC4S4*(is0734 - is1256) ; in fdct8x8theora_ref()
229 temp2 = DOROUND(temp2); in fdct8x8theora_ref()
231 temp2>>=16; in fdct8x8theora_ref()
233 op[4*8] = (int16_t) temp2; in fdct8x8theora_ref()
243 temp2=xC2S6*irot_input_y; in fdct8x8theora_ref()
244 temp2=DOROUND(temp2); in fdct8x8theora_ref()
245 temp2>>=16; in fdct8x8theora_ref()
246 op[2*8] = (int16_t) (temp1 + temp2); in fdct8x8theora_ref()
251 temp2=xC2S6*irot_input_x ; in fdct8x8theora_ref()
252 temp2=DOROUND(temp2); in fdct8x8theora_ref()
253 temp2>>=16; in fdct8x8theora_ref()
254 op[6*8] = (int16_t) (temp1 -temp2) ; in fdct8x8theora_ref()
264 temp2=xC7S1*irot_input_y; in fdct8x8theora_ref()
265 temp2=DOROUND(temp2); in fdct8x8theora_ref()
266 temp2>>=16; in fdct8x8theora_ref()
267 op[1*8] = (int16_t) (temp1 - temp2); in fdct8x8theora_ref()
272 temp2=xC1S7*irot_input_y ; in fdct8x8theora_ref()
273 temp2=DOROUND(temp2); in fdct8x8theora_ref()
274 temp2>>=16; in fdct8x8theora_ref()
275 op[7*8] = (int16_t) (temp1 + temp2); in fdct8x8theora_ref()
285 temp2=xC5S3*irot_input_y ; in fdct8x8theora_ref()
286 temp2=DOROUND(temp2); in fdct8x8theora_ref()
287 temp2>>=16; in fdct8x8theora_ref()
288 op[3*8] = (int16_t) (temp1 - temp2) ; in fdct8x8theora_ref()
293 temp2=xC3S5*irot_input_y; in fdct8x8theora_ref()
294 temp2=DOROUND(temp2); in fdct8x8theora_ref()
295 temp2>>=16; in fdct8x8theora_ref()
296 op[5*8] = (int16_t) (temp1 + temp2); in fdct8x8theora_ref()