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

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_tty.cc 118 size_t bytes_to_copy = std::min(count, input_buffer_.size());
121 std::deque<char>::iterator nl = std::find(input_buffer_.begin(),
122 input_buffer_.end(),
125 if (nl != input_buffer_.end()) {
127 size_t line_len = static_cast<size_t>(nl - input_buffer_.begin()) + 1;
134 std::copy(input_buffer_.begin(), input_buffer_.begin() + bytes_to_copy,
137 input_buffer_.erase(input_buffer_.begin(),
138 input_buffer_.begin() + bytes_to_copy)
    [all...]
mount_node_tty.h 49 std::deque<char> input_buffer_; member in class:nacl_io::MountNodeTty
  /external/chromium_org/net/dns/
address_sorter_win.cc 49 input_buffer_(reinterpret_cast<SOCKET_ADDRESS_LIST*>(
54 input_buffer_->iAddressCount = list.size();
56 input_buffer_->Address + input_buffer_->iAddressCount);
70 input_buffer_->Address[i].lpSockaddr = addr;
71 input_buffer_->Address[i].iSockaddrLength = addr_len;
94 int result = WSAIoctl(sock, SIO_ADDRESS_LIST_SORT, input_buffer_.get(),
127 scoped_ptr_malloc<SOCKET_ADDRESS_LIST> input_buffer_; member in class:net::__anon11748::AddressSorterWin::Job
  /frameworks/ex/variablespeed/jni/
sola_time_scaler.cc 58 : input_buffer_(NULL), output_buffer_(NULL), analyzer_(NULL) {
67 delete input_buffer_;
159 delete input_buffer_;
160 input_buffer_ = new RingBuffer();
161 input_buffer_->Init(static_cast<int>
182 return input_buffer_->overhead();
222 input_buffer_->Write(buffer, num_frames);
252 while (((input_buffer_->available(kInputReader) > max_frames_to_merge_) ||
258 min(input_buffer_->available(kInputReader), max_frames_to_merge_);
263 float* input_pointer = input_buffer_->GetPointer(kInputReader, input_count)
    [all...]
sola_time_scaler.h 149 RingBuffer* input_buffer_; member in class:video_editing::SolaTimeScaler
  /external/chromium_org/remoting/protocol/
connection_tester.cc 44 ASSERT_EQ(test_data_size_, input_buffer_->offset());
50 input_buffer_->StartOfBuffer(), test_data_size_));
65 input_buffer_ = new net::GrowableIOBuffer();
102 input_buffer_->SetCapacity(input_buffer_->offset() + message_size_);
104 input_buffer_.get(),
124 input_buffer_->set_offset(input_buffer_->offset() + result);
125 if (input_buffer_->offset() == test_data_size_)
connection_tester.h 61 scoped_refptr<net::GrowableIOBuffer> input_buffer_; member in class:remoting::protocol::StreamConnectionTester
  /external/chromium_org/media/base/
sinc_resampler.cc 40 // r0_ = input_buffer_ + kKernelSize / 2
41 // r1_ = input_buffer_
67 // r0_ = r0_ + kKernelSize / 2 = input_buffer_ + kKernelSize
153 input_buffer_(static_cast<float*>(
155 r1_(input_buffer_.get()),
156 r2_(input_buffer_.get() + kKernelSize / 2),
181 r0_ = input_buffer_.get() + (second_load ? kKernelSize : kKernelSize / 2);
187 CHECK_EQ(r1_, input_buffer_.get());
325 memcpy(r1_, r3_, sizeof(*input_buffer_.get()) * kKernelSize);
348 memset(input_buffer_.get(), 0
    [all...]
sinc_resampler.h 129 scoped_ptr<float[], base::ScopedPtrAlignedFree> input_buffer_; member in class:media::SincResampler
131 // Pointers to the various regions inside |input_buffer_|. See the diagram at
  /external/chromium_org/chrome/browser/devtools/
adb_client_socket_browsertest.cc 83 scoped_refptr<net::GrowableIOBuffer> input_buffer_; member in class:SingleConnectionServer
94 input_buffer_ = new net::GrowableIOBuffer();
95 input_buffer_->SetCapacity(buffer_size);
167 if (input_buffer_->RemainingCapacity() == 0)
168 input_buffer_->SetCapacity(input_buffer_->capacity() * 2);
171 input_buffer_.get(),
172 input_buffer_->RemainingCapacity(),
185 input_buffer_->set_offset(input_buffer_->offset() + count)
    [all...]
  /art/runtime/jdwp/
jdwp_priv.h 79 uint8_t input_buffer_[8192]; member in class:art::JDWP::JdwpNetStateBase
jdwp_adb.cc 382 readCount = read(clientSock, input_buffer_ + input_count_, sizeof(input_buffer_) - input_count_);
415 if (memcmp(input_buffer_, kMagicHandshake, kMagicHandshakeLen) != 0) {
416 LOG(ERROR) << StringPrintf("ERROR: bad handshake '%.14s'", input_buffer_);
421 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen));
jdwp_socket.cc 439 readCount = read(clientSock, input_buffer_ + input_count_, sizeof(input_buffer_) - input_count_);
472 if (memcmp(input_buffer_, kMagicHandshake, kMagicHandshakeLen) != 0) {
473 LOG(ERROR) << StringPrintf("ERROR: bad handshake '%.14s'", input_buffer_);
478 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen));
jdwp_main.cc 83 memmove(input_buffer_, input_buffer_ + count, input_count_ - count);
94 uint32_t length = Get4BE(input_buffer_);
383 JDWP::Request request(netStateBase->input_buffer_, netStateBase->input_count_);
  /external/chromium_org/jingle/glue/
pseudotcp_adapter_unittest.cc 187 ASSERT_EQ(kTestDataSize + kMessageSize, input_buffer_->capacity());
193 input_buffer_->StartOfBuffer(), kTestDataSize));
215 input_buffer_ = new net::GrowableIOBuffer();
217 input_buffer_->SetCapacity(kMessageSize);
254 input_buffer_->set_offset(input_buffer_->capacity() - kMessageSize);
257 input_buffer_.get(),
278 input_buffer_->SetCapacity(input_buffer_->capacity() + result);
279 if (input_buffer_->capacity() == kTestDataSize + kMessageSize
293 scoped_refptr<net::GrowableIOBuffer> input_buffer_; member in class:jingle_glue::__anon11319::TCPChannelTester
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
gzip_stream.cc 209 input_buffer_ = operator new(input_buffer_length_);
210 GOOGLE_CHECK(input_buffer_ != NULL);
238 if (input_buffer_ != NULL) {
239 operator delete(input_buffer_);
283 zcontext_.next_in = static_cast<Bytef*>(input_buffer_);
285 *data = input_buffer_;
gzip_stream.h 191 void* input_buffer_; member in class:google::protobuf::io::GzipOutputStream
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 203 input_buffer_ = operator new(input_buffer_length_);
204 GOOGLE_CHECK(input_buffer_ != NULL);
232 if (input_buffer_ != NULL) {
233 operator delete(input_buffer_);
278 zcontext_.next_in = static_cast<Bytef*>(input_buffer_);
280 *data = input_buffer_;
gzip_stream.h 189 void* input_buffer_; member in class:google::protobuf::io::GzipOutputStream
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 115 // input_file_ will be valid and input_buffer_ will be allocated.
120 &input_buffer_);
137 // into input_buffer_. If successful, returns true and sets *bytes_read
138 // to the number of bytes read into input_buffer_. If an error occurs,
177 // input_buffer_ will be the value specified by the --buffersize option.
181 std::vector<char> input_buffer_; member in class:open_vcdiff::VCDiffFileBasedCoder
313 *bytes_read = fread(&input_buffer_[0], 1, input_buffer_.size(), input_file_);
418 if (!encoder.EncodeChunk(&input_buffer_[0], bytes_read, &output)) {
473 if (!decoder.DecodeChunk(&input_buffer_[0], bytes_read, &output))
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
vcdiff_main.cc 116 // input_file_ will be valid and input_buffer_ will be allocated.
121 &input_buffer_);
138 // into input_buffer_. If successful, returns true and sets *bytes_read
139 // to the number of bytes read into input_buffer_. If an error occurs,
178 // input_buffer_ will be the value specified by the --buffersize option.
182 std::vector<char> input_buffer_; member in class:open_vcdiff::VCDiffFileBasedCoder
314 *bytes_read = fread(&input_buffer_[0], 1, input_buffer_.size(), input_file_);
422 if (!encoder.EncodeChunk(&input_buffer_[0], bytes_read, &output)) {
477 if (!decoder.DecodeChunk(&input_buffer_[0], bytes_read, &output))
    [all...]
  /external/open-vcdiff/src/
vcdiff_main.cc 116 // input_file_ will be valid and input_buffer_ will be allocated.
121 &input_buffer_);
138 // into input_buffer_. If successful, returns true and sets *bytes_read
139 // to the number of bytes read into input_buffer_. If an error occurs,
178 // input_buffer_ will be the value specified by the --buffersize option.
182 std::vector<char> input_buffer_; member in class:open_vcdiff::VCDiffFileBasedCoder
314 *bytes_read = fread(&input_buffer_[0], 1, input_buffer_.size(), input_file_);
422 if (!encoder.EncodeChunk(&input_buffer_[0], bytes_read, &output)) {
477 if (!decoder.DecodeChunk(&input_buffer_[0], bytes_read, &output))
    [all...]

Completed in 754 milliseconds