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

  /external/libvpx/libvpx/third_party/libmkv/
EbmlBufferWriter.c 11 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
14 memcpy(src, buffer_in, len);
28 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
31 const unsigned char *const p = (const unsigned char *)(buffer_in);
  /external/chromium_org/media/base/
audio_buffer_queue.cc 26 void AudioBufferQueue::Append(const scoped_refptr<AudioBuffer>& buffer_in) {
29 if (buffers_.empty() && buffer_in->timestamp() != kNoTimestamp()) {
30 current_time_ = buffer_in->timestamp();
35 buffers_.push_back(buffer_in);
39 frames_ += buffer_in->frame_count();
audio_buffer_queue.h 33 // Appends |buffer_in| to this queue.
34 void Append(const scoped_refptr<AudioBuffer>& buffer_in);
seekable_buffer.cc 62 bool SeekableBuffer::Append(const scoped_refptr<DataBuffer>& buffer_in) {
63 if (buffers_.empty() && buffer_in->timestamp() != kNoTimestamp()) {
64 current_time_ = buffer_in->timestamp();
69 buffers_.push_back(buffer_in);
79 forward_bytes_ += buffer_in->data_size();
seekable_buffer.h 77 // Appends |buffer_in| to this buffer. Returns false if forward_bytes() is
80 bool Append(const scoped_refptr<DataBuffer>& buffer_in);
  /external/chromium_org/media/filters/
audio_renderer_algorithm.h 61 void EnqueueBuffer(const scoped_refptr<AudioBuffer>& buffer_in);
audio_renderer_algorithm.cc 369 const scoped_refptr<AudioBuffer>& buffer_in) {
370 DCHECK(!buffer_in->end_of_stream());
371 audio_buffer_.Append(buffer_in);
  /external/libvpx/libvpx/
webmenc.c 19 const void *buffer_in,
21 (void) fwrite(buffer_in, 1, len, glob->stream);
26 x = (char)(*(const s *)buffer_in >> (i * CHAR_BIT)); \
31 const void *buffer_in,
  /external/chromium_org/sync/engine/net/
server_connection_manager.h 130 // buffer_in - will be POSTed
133 std::string buffer_in; member in struct:syncer::ServerConnectionManager::PostBufferParams
190 // POSTS buffer_in and reads a response into buffer_out. Uses our currently
server_connection_manager.cc 290 path.c_str(), auth_token, params->buffer_in, &params->response);
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.h 171 // buffer_in - will be POSTed
174 const std::string& buffer_in; member in struct:browser_sync::ServerConnectionManager::PostBufferParams
234 // POSTS buffer_in and reads a response into buffer_out. Uses our currently
server_connection_manager.cc 178 bool ok = post->Init(path.c_str(), auth_token, params->buffer_in,
  /external/chromium_org/sync/engine/
syncer_proto_util.cc 270 msg.SerializeToString(&params.buffer_in);
  /external/chromium_org/sync/test/engine/
mock_connection_manager.cc 81 CHECK(post.ParseFromString(params->buffer_in));

Completed in 676 milliseconds