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

  /external/webrtc/webrtc/base/
stream.cc 693 data_length_(0), read_position_(0), owner_(Thread::Current()) {
699 data_length_(0), read_position_(0), owner_(owner) {
721 const size_t tail_copy = std::min(copy, buffer_length_ - read_position_);
722 memcpy(buffer, &buffer_[read_position_], tail_copy);
725 read_position_ = 0;
757 read_position_ = (read_position_ + copy) % buffer_length_;
801 *size = (read_position_ + data_length_ <= buffer_length_) ?
802 data_length_ : buffer_length_ - read_position_;
803 return &buffer_[read_position_];
    [all...]
stream.h 556 size_t read_position_; // offset to the readable data member in class:rtc::FifoBuffer

Completed in 49 milliseconds