Home | History | Annotate | Download | only in generic

Lines Matching defs:temp1

66   WORD32 temp1[6];
83 temp1[0] = *ptr_forward++;
84 temp1[1] = *ptr_reverse--;
85 temp1[0] = ixheaacd_add32(ixheaacd_shr32(temp1[0], LP_SHIFT_VAL),
86 ixheaacd_shr32(temp1[1], LP_SHIFT_VAL));
88 temp1[2] = *(ptr_forward - 33);
89 temp1[3] = *(ptr_reverse - 31);
90 temp1[1] = ixheaacd_sub32(ixheaacd_shr32(temp1[2], LP_SHIFT_VAL),
91 ixheaacd_shr32(temp1[3], LP_SHIFT_VAL));
97 *p_out++ = ixheaacd_mult32x16in32(temp1[0], twid_re) +
98 ixheaacd_mult32x16in32(temp1[1], twid_im);
99 *p_out++ = -ixheaacd_mult32x16in32(temp1[1], twid_re) +
100 ixheaacd_mult32x16in32(temp1[0], twid_im);
108 temp1[1] = *ptr_reverse--;
109 temp1[0] = *(ptr_reverse - 31);
110 temp1[1] = ixheaacd_sub32(ixheaacd_shr32(temp1[1], LP_SHIFT_VAL),
111 ixheaacd_shr32(temp1[0], LP_SHIFT_VAL));
113 temp1[0] = temp1[1];
115 temp2[2] = ixheaacd_mult32x16in32(temp1[0], twid_re) +
116 ixheaacd_mult32x16in32(temp1[1], twid_im);
117 temp2[3] = -ixheaacd_mult32x16in32(temp1[1], twid_re) +
118 ixheaacd_mult32x16in32(temp1[0], twid_im);
126 temp1[0] = -temp2[1] - temp2[3];
127 temp1[1] = temp2[0] - temp2[2];
128 temp2[0] = (temp2[0] + temp2[2] + temp1[0]);
129 temp2[1] = (temp2[1] - temp2[3] + temp1[1]);
151 temp1[0] = temp2[0] - temp2[2];
152 temp1[1] = (temp2[0] + temp2[2]);
154 temp1[2] = temp2[1] + temp2[3];
155 temp1[3] = (temp2[1] - temp2[3]);
157 temp1[4] = ixheaacd_mult32x16in32(temp1[0], twid_re) +
158 ixheaacd_mult32x16in32(temp1[2], twid_im);
159 temp1[5] = -ixheaacd_mult32x16in32(temp1[2], twid_re) +
160 ixheaacd_mult32x16in32(temp1[0], twid_im);
162 temp1[1] >>= 1;
163 temp1[3] >>= 1;
165 *ptr_forward++ = temp1[1] - temp1[4];
166 *ptr_forward++ = temp1[3] + temp1[5];
168 *ptr_reverse-- = -temp1[3] + temp1[5];
169 *ptr_reverse-- = temp1[1] + temp1[4];
181 temp1[0] = temp2[0] - temp2[2];
182 temp1[1] = (temp2[0] + temp2[2]);
184 temp1[2] = temp2[1] + temp2[3];
185 temp1[3] = (temp2[1] - temp2[3]);
187 temp1[4] = ixheaacd_mult32x16in32(temp1[0], twid_re) -
188 ixheaacd_mult32x16in32(temp1[2], twid_im);
189 temp1[5] = ixheaacd_mult32x16in32(temp1[2], twid_re) +
190 ixheaacd_mult32x16in32(temp1[0], twid_im);
192 temp1[1] >>= 1;
193 temp1[3] >>= 1;
194 *ptr_forward++ = temp1[1] + temp1[4];
195 *ptr_forward++ = temp1[3] + temp1[5];
472 WORD32 temp1, temp2;
478 temp1 = ixheaacd_shr32(*p_time_in1++, HQ_SHIFT_VAL);
481 *t_real_subband++ = ixheaacd_sub32_sat(temp1, temp2);
483 *t_imag_subband++ = ixheaacd_add32(temp1, temp2);
1341 WORD32 temp1, temp2;
1347 temp1 = ixheaacd_shr32(*time_sample_buf++, HQ_SHIFT_64);
1350 *t_real_subband++ = ixheaacd_sub32_sat(temp1, temp2);
1352 *t_imag_subband++ = ixheaacd_add32(temp1, temp2);