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

  /external/libchrome/base/
pickle.cc 25 read_index_(0),
43 if (end_index_ - read_index_ < aligned_size) {
44 read_index_ = end_index_;
46 read_index_ += aligned_size;
52 if (sizeof(Type) > end_index_ - read_index_) {
53 read_index_ = end_index_;
56 const char* current_read_ptr = payload_ + read_index_;
63 end_index_ - read_index_ < static_cast<size_t>(num_bytes)) {
64 read_index_ = end_index_;
67 const char* current_read_ptr = payload_ + read_index_;
    [all...]
pickle.h 28 PickleIterator() : payload_(NULL), read_index_(0), end_index_(0) {}
83 // Advance read_index_ but do not allow it to exceed end_index_.
84 // Keeps read_index_ aligned.
101 size_t read_index_; // Offset of the next readable byte in payload. member in class:base::PickleIterator

Completed in 45 milliseconds