• Home
  • Raw
  • Download

Lines Matching refs:L_tmp

149   FIXP_DBL L_tmp;  in Preemph_code()  local
153 L_tmp = FX_COD2FX_DBL(x[i]); in Preemph_code()
154 L_tmp -= fMultDiv2(x[i - 1], TILT_CODE2); in Preemph_code()
155 x[i] = FX_DBL2FX_COD(L_tmp); in Preemph_code()
169 FIXP_DBL L_tmp; in Pit_shrp() local
172 L_tmp = FX_COD2FX_DBL(x[i]); in Pit_shrp()
173 L_tmp += fMult(x[i - pit_lag], PIT_SHARP); in Pit_shrp()
174 x[i] = FX_DBL2FX_COD(L_tmp); in Pit_shrp()
305 FIXP_DBL ener_exc, L_tmp; in calc_period_factor() local
329 L_tmp = fPow2(gain_code << L_tmp_e); in calc_period_factor()
330 L_tmp = fMult(ener_code, L_tmp); in calc_period_factor()
342 L_tmp >>= exp_diff + 1; in calc_period_factor()
344 L_tmp = (FIXP_DBL)0; in calc_period_factor()
346 den = ener_exc + L_tmp; in calc_period_factor()
356 L_tmp >>= 1; in calc_period_factor()
357 den = ener_exc + L_tmp; in calc_period_factor()
362 num = (ener_exc - L_tmp); in calc_period_factor()
366 if (ener_exc > L_tmp) { in calc_period_factor()
406 FIXP_DBL fac, L_tmp, gc_thres; in noise_enhancer() local
410 L_tmp = gain_code; in noise_enhancer()
411 if (L_tmp < gc_thres) { in noise_enhancer()
412 L_tmp += fMultDiv2(gain_code, in noise_enhancer()
414 if (L_tmp > gc_thres) { in noise_enhancer()
415 L_tmp = gc_thres; in noise_enhancer()
418 L_tmp = fMult(gain_code, in noise_enhancer()
420 if (L_tmp < gc_thres) { in noise_enhancer()
421 L_tmp = gc_thres; in noise_enhancer()
424 *p_gc_threshold = L_tmp; in noise_enhancer()
435 gain_code = fMult(fac, L_tmp) - in noise_enhancer()
576 FIXP_DBL L_tmp; in Syn_filt() local
579 L_tmp = (FIXP_DBL)0; in Syn_filt()
582 L_tmp -= fMultDiv2(a[j], y[i - (j + 1)]) >> (LP_FILTER_SCALE - 1); in Syn_filt()
585 L_tmp = scaleValue(L_tmp, a_exp + LP_FILTER_SCALE); in Syn_filt()
586 y[i] = fAddSaturate(L_tmp, x[i]); in Syn_filt()