Lines Matching defs:temp2
163 SoftFloat temp1, temp2, fac;
176 temp2.exp = (pan_offset - sbr->data[1].env_facs_q[e][k]) * alpha;
177 if (temp2.exp & 1)
178 temp2.mant = 759250125;
180 temp2.mant = 0x20000000;
181 temp2.exp = (temp2.exp >> 1) + 1;
182 fac = av_div_sf(temp1, av_add_sf(FLOAT_1, temp2));
184 sbr->data[1].env_facs[e][k] = av_mul_sf(fac, temp2);
189 SoftFloat temp1, temp2, fac;
195 temp2.exp = 12 - sbr->data[1].noise_facs_q[e][k] + 1;
196 temp2.mant = 0x20000000;
197 fac = av_div_sf(temp1, av_add_sf(FLOAT_1, temp2));
199 sbr->data[1].noise_facs[e][k] = av_mul_sf(fac, temp2);