Home | History | Annotate | Download | only in wtf

Lines Matching refs:cache_size_

2285   // shrink the cache.  Decrements cache_size_ on succeess.
2291 // This lock protects all the data members. cached_entries and cache_size_
2312 int32_t cache_size_;
2458 cache_size_ = 1;
2460 ASSERT(cache_size_ <= kNumTransferEntries);
2534 if (used_slots_ < cache_size_) return true;
2536 if (cache_size_ == kNumTransferEntries) return false;
2541 cache_size_++;
2561 if (cache_size_ == 0) return false;
2563 if (force == false && used_slots_ == cache_size_) return false;
2570 ASSERT(used_slots_ <= cache_size_);
2571 ASSERT(0 <= cache_size_);
2572 if (cache_size_ == 0) return false;
2573 if (used_slots_ == cache_size_) {
2577 cache_size_--;
2582 cache_size_--;