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

  /external/tensorflow/tensorflow/core/lib/io/
block_builder.h 55 std::vector<uint32> restarts_; // Restart points member in class:tensorflow::table::BlockBuilder
block.cc 91 uint32 const restarts_; // Offset of restart array (list of fixed32) member in class:tensorflow::table::Block::Iter
94 // current_ is offset in data_ of current entry. >= restarts_ if !Valid
112 return core::DecodeFixed32(data_ + restarts_ + index * sizeof(uint32));
128 restarts_(restarts),
130 current_(restarts_),
135 bool Valid() const override { return current_ < restarts_; }
161 DecodeEntry(data_ + region_offset, data_ + restarts_, &shared,
198 current_ = restarts_;
208 const char* limit = data_ + restarts_; // Restarts come right after data
211 current_ = restarts_;
    [all...]

Completed in 83 milliseconds