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 480 child_offset_ = static_cast<int>(offset_) & (kMaxEntrySize - 1);
481 child_len_ = std::min(buf_len_, kMaxEntrySize - child_offset_);
488 int last_bit = (child_offset_ + child_len_ + 1023) >> 10;
489 int start = child_offset_ >> 10;
495 if (start == child_offset_ >> 10) {
497 if (partial_block_len <= (child_offset_ & (kBlockSize - 1)))
502 child_len_ = (start << 10) - child_offset_;
521 int first_bit = child_offset_ >> 10;
522 int block_offset = child_offset_ & (kBlockSize - 1);
529 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 526 milliseconds