Lines Matching refs:blocks_
33 blocks_ = 0; in RangeSet()
91 if (blocks_ >= SIZE_MAX - sz) { in PushBack()
97 blocks_ += sz; in PushBack()
103 blocks_ = 0; in Clear()
109 if (blocks_ < groups) { in Split()
110 groups = blocks_; in Split()
114 size_t mean = blocks_ / groups; in Split()
116 std::fill_n(blocks_per_group.begin(), blocks_ % groups, mean + 1); in Split()
160 CHECK_LT(idx, blocks_) << "Out of bound index " << idx << " (total blocks: " << blocks_ << ")"; in GetBlockNumber()
189 if (start_index > end_index || end_index > blocks_) { in GetSubRanges()
192 << " total number of blocks the range contains is " << blocks_; in GetSubRanges()
235 << ", num_of_blocks: " << num_of_blocks << " total number of blocks: " << blocks_; in GetSubRanges()
267 blocks_ += (to_insert.second - to_insert.first); in Insert()
272 blocks_ += (to_insert.second - to_insert.first); in Insert()