Lines Matching defs:temp1
163 SoftFloat temp1, temp2, fac;
165 temp1.exp = sbr->data[0].env_facs_q[e][k] * alpha + 14;
166 if (temp1.exp & 1)
167 temp1.mant = 759250125;
169 temp1.mant = 0x20000000;
170 temp1.exp = (temp1.exp >> 1) + 1;
171 if (temp1.exp > 66) { // temp1 > 1E20
173 temp1 = FLOAT_1;
182 fac = av_div_sf(temp1, av_add_sf(FLOAT_1, temp2));
189 SoftFloat temp1, temp2, fac;
191 temp1.exp = NOISE_FLOOR_OFFSET - \
193 temp1.mant = 0x20000000;
194 av_assert0(temp1.exp <= 66);
197 fac = av_div_sf(temp1, av_add_sf(FLOAT_1, temp2));
207 SoftFloat temp1;
209 temp1.exp = alpha * sbr->data[ch].env_facs_q[e][k] + 12;
210 if (temp1.exp & 1)
211 temp1.mant = 759250125;
213 temp1.mant = 0x20000000;
214 temp1.exp = (temp1.exp >> 1) + 1;
215 if (temp1.exp > 66) { // temp1 > 1E20
217 temp1 = FLOAT_1;
219 sbr->data[ch].env_facs[e][k] = temp1;