Searched refs:skip_bytes_ (Results 1 – 2 of 2) sorted by relevance
103 skip_bytes_(0), in PuffinStream()154 *offset = puff_pos_ + skip_bytes_; in GetOffset()192 skip_bytes_ = offset - puff_pos_; in Seek()266 max_cache_size_ == 0 && (skip_bytes_ == 0) && in Read()299 std::min(length - bytes_read, cur_puff_->length - skip_bytes_); in Read()301 memcpy(bytes + bytes_read, puff_buffer_->data() + skip_bytes_, in Read()305 skip_bytes_ += bytes_to_copy; in Read()309 if (puff_pos_ + skip_bytes_ == cur_puff_->offset + cur_puff_->length) { in Read()310 puff_pos_ += skip_bytes_; in Read()311 skip_bytes_ = 0; in Read()[all …]
130 uint64_t skip_bytes_; variable