Lines Matching refs:frames_to_process

61                                   uint32_t frames_to_process) {  in Process()  argument
64 ProcessCurve(source, destination, frames_to_process); in Process()
67 ProcessCurve2x(source, destination, frames_to_process); in Process()
70 ProcessCurve4x(source, destination, frames_to_process); in Process()
113 uint32_t frames_to_process) { in ProcessCurve() argument
121 memcpy(destination, source, sizeof(float) * frames_to_process); in ProcessCurve()
131 memcpy(destination, source, sizeof(float) * frames_to_process); in ProcessCurve()
136 for (unsigned i = 0; i < frames_to_process; ++i) { in ProcessCurve()
145 uint32_t frames_to_process) { in ProcessCurve2x() argument
146 DCHECK_EQ(frames_to_process, audio_utilities::kRenderQuantumFrames); in ProcessCurve2x()
150 up_sampler_->Process(source, temp_p, frames_to_process); in ProcessCurve2x()
153 ProcessCurve(temp_p, temp_p, frames_to_process * 2); in ProcessCurve2x()
155 down_sampler_->Process(temp_p, destination, frames_to_process * 2); in ProcessCurve2x()
160 uint32_t frames_to_process) { in ProcessCurve4x() argument
161 DCHECK_EQ(frames_to_process, audio_utilities::kRenderQuantumFrames); in ProcessCurve4x()
166 up_sampler_->Process(source, temp_p, frames_to_process); in ProcessCurve4x()
167 up_sampler2_->Process(temp_p, temp_p2, frames_to_process * 2); in ProcessCurve4x()
170 ProcessCurve(temp_p2, temp_p2, frames_to_process * 4); in ProcessCurve4x()
172 down_sampler2_->Process(temp_p2, temp_p, frames_to_process * 4); in ProcessCurve4x()
173 down_sampler_->Process(temp_p, destination, frames_to_process * 2); in ProcessCurve4x()