Home
last modified time | relevance | path

Searched refs:output_buffer_ (Results 1 – 16 of 16) sorted by relevance

/external/libbrillo/brillo/streams/
Dfake_stream.cc147 output_buffer_.clear(); in ClearWriteQueue()
247 return output_buffer_.size() >= max_output_buffer_size_; in IsWriteBufferFull()
284 output_buffer_.clear(); in WriteNonBlocking()
294 max_output_buffer_size_ - output_buffer_.size()); in WriteNonBlocking()
296 output_buffer_.insert(output_buffer_.end(), in WriteNonBlocking()
298 if (output_buffer_.size() == max_output_buffer_size_) { in WriteNonBlocking()
300 expected_output_data_ != output_buffer_) { in WriteNonBlocking()
308 output_buffer_.begin(), output_buffer_.end()); in WriteNonBlocking()
310 output_buffer_.clear(); in WriteNonBlocking()
335 if (!output_buffer_.empty()) { in FlushBlocking()
[all …]
Dfake_stream.h160 brillo::Blob output_buffer_; variable
/external/webrtc/webrtc/common_audio/
Dblocker.cc115 output_buffer_(chunk_size_ + initial_delay_, num_output_channels_), in Blocker()
199 AddFrames(output_buffer_.channels(), in ProcessChunk()
205 output_buffer_.channels(), in ProcessChunk()
212 CopyFrames(output_buffer_.channels(), in ProcessChunk()
221 MoveFrames(output_buffer_.channels(), in ProcessChunk()
225 output_buffer_.channels(), in ProcessChunk()
227 ZeroOut(output_buffer_.channels(), in ProcessChunk()
Dblocker.h104 ChannelBuffer<float> output_buffer_; variable
/external/protobuf/src/google/protobuf/io/
Dgzip_stream.cc66 output_buffer_ = operator new(output_buffer_length_); in GzipInputStream()
67 GOOGLE_CHECK(output_buffer_ != NULL); in GzipInputStream()
68 zcontext_.next_out = static_cast<Bytef*>(output_buffer_); in GzipInputStream()
70 output_position_ = output_buffer_; in GzipInputStream()
73 operator delete(output_buffer_); in ~GzipInputStream()
110 zcontext_.next_out = static_cast<Bytef*>(output_buffer_); in Inflate()
112 output_position_ = output_buffer_; in Inflate()
Dgzip_stream.h98 void* output_buffer_; variable
/external/tensorflow/tensorflow/core/lib/io/snappy/
Dsnappy_outputbuffer.cc28 output_buffer_(new char[output_buffer_bytes]), in SnappyOutputBuffer()
30 next_out_(output_buffer_.get()), in SnappyOutputBuffer()
144 reinterpret_cast<char*>(output_buffer_.get()), bytes_to_write)); in FlushOutputBufferToFile()
146 next_out_ = output_buffer_.get(); in FlushOutputBufferToFile()
Dsnappy_inputbuffer.cc29 output_buffer_(new char[output_buffer_capacity_]), in SnappyInputBuffer()
109 next_out_ = output_buffer_.get(); in Inflate()
112 output_buffer_.get()); in Inflate()
Dsnappy_outputbuffer.h109 std::unique_ptr<char[]> output_buffer_; variable
Dsnappy_inputbuffer.h108 std::unique_ptr<char[]> output_buffer_; variable
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dfft_thunk.cc105 output_buffer_(output_buffer), in FftThunk()
163 buffer_allocations.GetDeviceAddress(output_buffer_)); in ExecuteOnStream()
172 buffer_allocations.GetDeviceAddress(output_buffer_)); in ExecuteOnStream()
188 buffer_allocations.GetDeviceAddress(output_buffer_)); in ExecuteOnStream()
197 buffer_allocations.GetDeviceAddress(output_buffer_)); in ExecuteOnStream()
Dgemm_thunk.h67 const BufferAllocation::Slice output_buffer_; variable
Dfft_thunk.h88 const BufferAllocation::Slice output_buffer_; variable
Dgemm_thunk.cc303 output_buffer_(output_buffer), in GemmThunk()
321 buffer_allocations.GetDeviceAddress(output_buffer_); in ExecuteOnStream()
/external/webrtc/webrtc/modules/audio_processing/
Daudio_buffer.cc422 if (!output_buffer_) { in InterleaveTo()
423 output_buffer_.reset( in InterleaveTo()
429 output_buffer_->fbuf()->channels()[i], output_num_frames_); in InterleaveTo()
431 data_ptr = output_buffer_.get(); in InterleaveTo()
Daudio_buffer.h155 rtc::scoped_ptr<IFChannelBuffer> output_buffer_; variable