Lines Matching refs:current_lag
104 size_t current_lag = expand_lags_[current_lag_index_]; in Process() local
107 expansion_vector_length - current_lag - overlap_length_; in Process()
108 size_t temp_length = current_lag + overlap_length_; in Process()
209 parameters.ar_gain_scale, current_lag); in Process()
212 current_lag); in Process()
214 &(unvoiced_vector[current_lag - kUnvoicedLpcOrder]), in Process()
237 temp_length = std::min(temp_length, current_lag); in Process()
244 if (temp_length < current_lag) { in Process()
252 temp_data + temp_length, current_lag - temp_length); in Process()
272 temp_data, temp_data, parameters.mute_factor, 8192, 14, current_lag); in Process()
275 DspHelper::MuteSignal(temp_data, parameters.mute_slope, current_lag); in Process()
281 16384 - (((current_lag * parameters.mute_slope) + 8192) >> 6)); in Process()
297 TooManyExpands(), current_lag, unvoiced_array_memory); in Process()
300 for (size_t i = 0; i < current_lag; i++) { in Process()
304 output->AssertSize(current_lag); in Process()
306 assert(output->Size() == current_lag); in Process()
308 (*output)[channel_ix].OverwriteAt(temp_data, current_lag, 0); in Process()