Home | History | Annotate | Download | only in src

Lines Matching refs:L_tmp

130     int32 L_tmp;
133 L_tmp = ((int32)x_hi[0]) << 16;
134 L_tmp += ((int32)x_lo[0]) << 4;
135 L_tmp = shl_int32(L_tmp, 3);
137 L_tmp = fxp_mac_16by16(*mem, mu, L_tmp),
139 L_tmp = shl_int32(L_tmp, 1); /* saturation can occur here */
140 y[0] = amr_wb_round(L_tmp);
146 L_tmp = ((int32)hi) << 16;
147 L_tmp += ((int32)lo) << 4;
148 L_tmp = shl_int32(L_tmp, 3);
149 L_tmp = fxp_mac_16by16(y[i - 1], mu, L_tmp),
150 L_tmp = shl_int32(L_tmp, 1); /* saturation can occur here */
151 y[i] = amr_wb_round(L_tmp);
155 L_tmp = ((int32)hi) << 16;
156 L_tmp += ((int32)lo) << 4;
157 L_tmp = shl_int32(L_tmp, 3);
158 L_tmp = fxp_mac_16by16(y[i - 1], mu, L_tmp),
159 L_tmp = shl_int32(L_tmp, 1); /* saturation can occur here */
160 y[i] = amr_wb_round(L_tmp);