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

  /external/chromium/net/disk_cache/
sparse_control.cc 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
    [all...]
sparse_control.h 168 int child_offset_; // Offset to use for the current child. member in class:disk_cache::SparseControl

Completed in 124 milliseconds