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

  /external/webrtc/webrtc/common_audio/
blocker.cc 115 output_buffer_(chunk_size_ + initial_delay_, num_output_channels_),
199 AddFrames(output_buffer_.channels(),
205 output_buffer_.channels(),
212 CopyFrames(output_buffer_.channels(),
221 MoveFrames(output_buffer_.channels(),
225 output_buffer_.channels(),
227 ZeroOut(output_buffer_.channels(),
blocker.h 104 ChannelBuffer<float> output_buffer_; member in class:webrtc::Blocker
  /external/libbrillo/brillo/streams/
fake_stream.cc 147 output_buffer_.clear();
247 return output_buffer_.size() >= max_output_buffer_size_;
284 output_buffer_.clear();
294 max_output_buffer_size_ - output_buffer_.size());
296 output_buffer_.insert(output_buffer_.end(),
298 if (output_buffer_.size() == max_output_buffer_size_) {
300 expected_output_data_ != output_buffer_) {
308 output_buffer_.begin(), output_buffer_.end())
    [all...]
fake_stream.h 160 brillo::Blob output_buffer_; member in class:brillo::FakeStream
  /external/tensorflow/tensorflow/core/lib/io/snappy/
snappy_outputbuffer.h 60 // written to file but rather buffered in `output_buffer_` and gets written
75 // Appends `data` to `output_buffer_`. Flushes buffer contents to file when
82 // Deflate contents in input_buffer_ and store results in output_buffer_.
89 // Appends contents of `output_buffer_` to `file_`.
109 std::unique_ptr<char[]> output_buffer_; member in class:tensorflow::io::SnappyOutputBuffer
snappy_inputbuffer.h 81 // produced to the output_buffer_.
100 size_t output_buffer_capacity_; // Size of `output_buffer_`
108 std::unique_ptr<char[]> output_buffer_; member in class:tensorflow::io::SnappyInputBuffer
113 // Next unread byte in `output_buffer_`
119 // Number of unread bytes bytes available at `next_out_` in `output_buffer_`.
snappy_outputbuffer.cc 28 output_buffer_(new char[output_buffer_bytes]),
30 next_out_(output_buffer_.get()),
35 // The deflated output is accumulated in output_buffer_ and gets written to
144 reinterpret_cast<char*>(output_buffer_.get()), bytes_to_write));
146 next_out_ = output_buffer_.get();
snappy_inputbuffer.cc 23 size_t output_buffer_bytes // size of output_buffer_
29 output_buffer_(new char[output_buffer_capacity_]),
109 next_out_ = output_buffer_.get();
112 output_buffer_.get());
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
gemm_thunk.h 67 const BufferAllocation::Slice output_buffer_; member in class:xla::gpu::GemmThunk
fft_thunk.cc 105 output_buffer_(output_buffer),
163 buffer_allocations.GetDeviceAddress(output_buffer_));
172 buffer_allocations.GetDeviceAddress(output_buffer_));
188 buffer_allocations.GetDeviceAddress(output_buffer_));
197 buffer_allocations.GetDeviceAddress(output_buffer_));
fft_thunk.h 88 const BufferAllocation::Slice output_buffer_; member in class:xla::gpu::FftThunk
gemm_thunk.cc 303 output_buffer_(output_buffer),
321 buffer_allocations.GetDeviceAddress(output_buffer_);
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 66 output_buffer_ = operator new(output_buffer_length_);
67 GOOGLE_CHECK(output_buffer_ != NULL);
68 zcontext_.next_out = static_cast<Bytef*>(output_buffer_);
70 output_position_ = output_buffer_;
73 operator delete(output_buffer_);
110 zcontext_.next_out = static_cast<Bytef*>(output_buffer_);
112 output_position_ = output_buffer_;
gzip_stream.h 98 void* output_buffer_; member in class:google::protobuf::io::GzipInputStream
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.cc 422 if (!output_buffer_) {
423 output_buffer_.reset(
429 output_buffer_->fbuf()->channels()[i], output_num_frames_);
431 data_ptr = output_buffer_.get();
audio_buffer.h 155 rtc::scoped_ptr<IFChannelBuffer> output_buffer_; member in class:webrtc::AudioBuffer

Completed in 609 milliseconds