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 26 read_index_(0),
44 if (end_index_ - read_index_ < aligned_size) {
45 read_index_ = end_index_;
47 read_index_ += aligned_size;
53 if (sizeof(Type) > end_index_ - read_index_) {
54 read_index_ = end_index_;
57 const char* current_read_ptr = payload_ + read_index_;
64 end_index_ - read_index_ < static_cast<size_t>(num_bytes)) {
65 read_index_ = end_index_;
68 const char* current_read_ptr = payload_ + read_index_;
    [all...]
pickle.h 33 PickleIterator() : payload_(NULL), read_index_(0), end_index_(0) {}
87 // Advance read_index_ but do not allow it to exceed end_index_.
88 // Keeps read_index_ aligned.
105 size_t read_index_; // Offset of the next readable byte in payload. member in class:base::PickleIterator

Completed in 46 milliseconds