Lines Matching refs:start_byte
220 uint64_t start_byte = (deflate_bit_pos_ / 8); in Read() local
222 auto bytes_to_read = std::min(length - bytes_read, end_byte - start_byte); in Read()
225 TEST_AND_RETURN_FALSE(stream_->Seek(start_byte)); in Read()
230 if ((start_byte + bytes_to_read) * 8 > cur_deflate_->offset) { in Read()
241 if (start_byte * 8 < deflate_bit_pos_) { in Read()
261 auto start_byte = (cur_deflate_->offset / 8); in Read() local
263 auto bytes_to_read = end_byte - start_byte; in Read()
274 TEST_AND_RETURN_FALSE(stream_->Seek(start_byte)); in Read()
295 TEST_AND_RETURN_FALSE(stream_->Seek(start_byte + bytes_to_read)); in Read()
372 auto start_byte = cur_deflate_->offset / 8; in Write() local
374 auto bytes_to_write = end_byte - start_byte; in Write()