• Home
  • Raw
  • Download

Lines Matching refs:ArrayView

71 void SignalTransition(rtc::ArrayView<const float> from,  in SignalTransition()
72 rtc::ArrayView<const float> to, in SignalTransition()
73 rtc::ArrayView<float> out) { in SignalTransition()
98 rtc::ArrayView<const float> v, in WindowedPaddedFft()
99 rtc::ArrayView<float> v_old, in WindowedPaddedFft()
143 rtc::ArrayView<float> output);
274 rtc::ArrayView<std::array<float, kFftLengthBy2>> e(e_stack.data(), in ProcessCapture()
276 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> Y2( in ProcessCapture()
278 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> E2( in ProcessCapture()
280 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> R2( in ProcessCapture()
282 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> R2_unbounded( in ProcessCapture()
284 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> S2_linear( in ProcessCapture()
286 rtc::ArrayView<FftData> Y(Y_stack.data(), num_capture_channels_); in ProcessCapture()
287 rtc::ArrayView<FftData> E(E_stack.data(), num_capture_channels_); in ProcessCapture()
288 rtc::ArrayView<FftData> comfort_noise(comfort_noise_stack.data(), in ProcessCapture()
290 rtc::ArrayView<FftData> high_band_comfort_noise( in ProcessCapture()
292 rtc::ArrayView<SubtractorOutput> subtractor_output( in ProcessCapture()
297 e = rtc::ArrayView<std::array<float, kFftLengthBy2>>(e_heap_.data(), in ProcessCapture()
299 Y2 = rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>>( in ProcessCapture()
301 E2 = rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>>( in ProcessCapture()
303 R2 = rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>>( in ProcessCapture()
305 R2_unbounded = rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>>( in ProcessCapture()
307 S2_linear = rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>>( in ProcessCapture()
309 Y = rtc::ArrayView<FftData>(Y_heap_.data(), num_capture_channels_); in ProcessCapture()
310 E = rtc::ArrayView<FftData>(E_heap_.data(), num_capture_channels_); in ProcessCapture()
311 comfort_noise = rtc::ArrayView<FftData>(comfort_noise_heap_.data(), in ProcessCapture()
313 high_band_comfort_noise = rtc::ArrayView<FftData>( in ProcessCapture()
315 subtractor_output = rtc::ArrayView<SubtractorOutput>( in ProcessCapture()
479 rtc::ArrayView<float> output) { in FormLinearFilterOutput()