HomeSort by relevance Sort by last modified time
    Searched refs:Convolve_C (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/media/base/
sinc_resampler_perftest.cc 60 &resampler, SincResampler::Convolve_C, true, "unoptimized_aligned");
sinc_resampler.h 82 static float Convolve_C(const float* input_ptr, const float* k1,
sinc_resampler.cc 93 #define CONVOLVE_FUNC Convolve_C
311 float SincResampler::Convolve_C(const float* input_ptr, const float* k1,
sinc_resampler_unittest.cc 129 // The optimized Convolve methods are slightly more precise than Convolve_C(),
135 double result = resampler.Convolve_C(
144 result = resampler.Convolve_C(
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
sinc_resampler.cc 129 convolve_proc_ = WebRtc_GetCPUInfo(kSSE2) ? Convolve_SSE : Convolve_C;
143 Convolve_NEON : Convolve_C;
148 #define CONVOLVE_FUNC Convolve_C
359 float SincResampler::Convolve_C(const float* input_ptr, const float* k1,
sinc_resampler.h 104 static float Convolve_C(const float* input_ptr, const float* k1,
sinc_resampler_unittest.cc 139 // The optimized Convolve methods are slightly more precise than Convolve_C(),
145 double result = resampler.Convolve_C(
154 result = resampler.Convolve_C(
179 // Benchmark Convolve_C().
182 resampler.Convolve_C(
187 printf("Convolve_C took %.2fms.\n", total_time_c_us / 1000);
206 "faster than Convolve_C.\n", total_time_optimized_unaligned_us / 1000,
219 "faster than Convolve_C and %.2fx faster than "

Completed in 643 milliseconds