Lines Matching defs:tmp
374 float tmp = count_lost < 4 ? last_pitch_gain : 0.5f * last_pitch_gain;
377 tmp = fminf(tmp, .95f);
380 if (gain_sum > tmp && gain_sum > 0.f) {
381 float fact = tmp / gain_sum;
577 float tmp = gamma;
580 lpc_out[i] = tmp * lpc_in[i];
581 tmp *= gamma;
701 float tmp = 0.f;
710 tmp += shift_filt[i][k] * corr[0][j + k - 3];
711 corr[i + 1][j] = tmp;
726 float tmp = 0.f;
729 tmp += exc[i - (pitch - maxj + 3) + k - 3] * shift_filt[maxi - 1][k];
731 tmp = exc[i - (pitch - maxj + 3)];
733 interp[i] = tmp;
809 const float tmp = (1.f + subframe) / nb_subframes;
812 lsp[i] = (1.f - tmp) * old_lsp[i] + tmp * new_lsp[i];
990 float *exc, *innov_save = NULL, tmp, ener;
1025 tmp = gain_3tap_to_1tap(pitch_gain);
1027 pitch_average += tmp;
1028 if ((tmp > best_pitch_gain &&
1032 (tmp > .6f * best_pitch_gain &&
1036 ((.67f * tmp) > best_pitch_gain &&
1041 if (tmp > best_pitch_gain)
1042 best_pitch_gain = tmp;
1528 float tmp = data[i];
1531 data[2 * i ] = stereo->smooth_left * tmp;
1532 data[2 * i + 1] = stereo->smooth_right * tmp;