HomeSort by relevance Sort by last modified time
    Searched full:restarts_ (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/table/
block_builder.cc 41 restarts_(),
45 restarts_.push_back(0); // First restart point is at offset 0
50 restarts_.clear();
51 restarts_.push_back(0); // First restart point is at offset 0
59 restarts_.size() * sizeof(uint32_t) + // Restart array
65 for (size_t i = 0; i < restarts_.size(); i++) {
66 PutFixed32(&buffer_, restarts_[i]);
68 PutFixed32(&buffer_, restarts_.size());
88 restarts_.push_back(buffer_.size());
block.cc 80 uint32_t const restarts_; // Offset of restart array (list of fixed32) member in class:leveldb::Block::Iter
83 // current_ is offset in data_ of current entry. >= restarts_ if !Valid
101 return DecodeFixed32(data_ + restarts_ + index * sizeof(uint32_t));
121 restarts_(restarts),
123 current_(restarts_),
128 virtual bool Valid() const { return current_ < restarts_; }
152 current_ = restarts_;
175 data_ + restarts_,
212 while (ParseNextKey() && NextEntryOffset() < restarts_) {
219 current_ = restarts_;
    [all...]
block_builder.h 45 std::vector<uint32_t> restarts_; // Restart points member in class:leveldb::BlockBuilder

Completed in 98 milliseconds