Home | History | Annotate | Download | only in armv7

Lines Matching refs:temp

263   WORD32 temp[128];
302 temp[z] = subband_tmp[2 * z];
303 temp[12 + z] = subband_tmp[2 * z + 1];
306 ixheaacd_complex_fft_p3(temp, &temp[12], 12, -1, &scaleshift);
309 subband[2 * z] = temp[z];
310 subband[2 * z + 1] = temp[z + 12];
314 temp[z] = subband_tmp[64 + 2 * z];
315 temp[12 + z] = subband_tmp[64 + 2 * z + 1];
318 ixheaacd_complex_fft_p3(temp, &temp[12], 12, -1, &scaleshift);
321 subband[64 + 2 * z] = temp[z];
322 subband[64 + 2 * z + 1] = temp[z + 12];
329 temp[z] = subband_tmp[2 * z];
330 temp[8 + z] = subband_tmp[2 * z + 1];
333 (*ixheaacd_complex_fft_p2)(temp, &temp[8], 8, -1, &scaleshift);
336 subband[2 * z] = temp[z] << scaleshift;
337 subband[2 * z + 1] = temp[z + 8] << scaleshift;
341 temp[z] = subband_tmp[64 + 2 * z];
342 temp[8 + z] = subband_tmp[64 + 2 * z + 1];
345 (*ixheaacd_complex_fft_p2)(temp, &temp[8], 8, -1, &scaleshift);
348 subband[64 + 2 * z] = temp[z] << scaleshift;
349 subband[64 + 2 * z + 1] = temp[8 + z] << scaleshift;