Home | History | Annotate | Download | only in disk_cache

Lines Matching refs:child_offset_

557   child_offset_ = static_cast<int>(offset_) & (kMaxEntrySize - 1);
558 child_len_ = std::min(buf_len_, kMaxEntrySize - child_offset_);
565 int last_bit = (child_offset_ + child_len_ + 1023) >> 10;
566 int start = child_offset_ >> 10;
572 if (start == child_offset_ >> 10) {
574 if (partial_block_len <= (child_offset_ & (kBlockSize - 1)))
579 child_len_ = (start << 10) - child_offset_;
598 int first_bit = child_offset_ >> 10;
599 int block_offset = child_offset_ & (kBlockSize - 1);
606 int last_bit = (child_offset_ + result) >> 10;
607 block_offset = (child_offset_ + result) & (kBlockSize - 1);
705 rv = child_->ReadDataImpl(kSparseData, child_offset_, user_buf_,
716 rv = child_->WriteDataImpl(kSparseData, child_offset_, user_buf_,
749 int last_bit = (child_offset_ + child_len_ + 1023) >> 10;
750 int start = child_offset_ >> 10;
756 int block_offset = child_offset_ & (kBlockSize - 1);
764 int empty_start = std::max((found << 10) - child_offset_, 0);