Lines Matching refs:temp_length
108 size_t temp_length = current_lag + overlap_length_; in Process() local
113 assert(expansion_vector_position + temp_length <= in Process()
115 parameters.expand_vector0.CopyTo(temp_length, expansion_vector_position, in Process()
118 std::unique_ptr<int16_t[]> temp_0(new int16_t[temp_length]); in Process()
119 parameters.expand_vector0.CopyTo(temp_length, expansion_vector_position, in Process()
121 std::unique_ptr<int16_t[]> temp_1(new int16_t[temp_length]); in Process()
122 parameters.expand_vector1.CopyTo(temp_length, expansion_vector_position, in Process()
126 voiced_vector_storage, temp_length); in Process()
129 assert(expansion_vector_position + temp_length <= in Process()
131 assert(expansion_vector_position + temp_length <= in Process()
134 std::unique_ptr<int16_t[]> temp_0(new int16_t[temp_length]); in Process()
135 parameters.expand_vector0.CopyTo(temp_length, expansion_vector_position, in Process()
137 std::unique_ptr<int16_t[]> temp_1(new int16_t[temp_length]); in Process()
138 parameters.expand_vector1.CopyTo(temp_length, expansion_vector_position, in Process()
141 voiced_vector_storage, temp_length); in Process()
234 size_t temp_length = in Process() local
237 temp_length = std::min(temp_length, current_lag); in Process()
238 DspHelper::CrossFade(voiced_vector, unvoiced_vector, temp_length, in Process()
244 if (temp_length < current_lag) { in Process()
250 voiced_vector + temp_length, parameters.current_voice_mix_factor, in Process()
251 unvoiced_vector + temp_length, temp_scale, 14, in Process()
252 temp_data + temp_length, current_lag - temp_length); in Process()