Home | History | Annotate | Download | only in wtf

Lines Matching refs:cache_size_

2395   // shrink the cache.  Decrements cache_size_ on succeess.
2401 // This lock protects all the data members. cached_entries and cache_size_
2422 int32_t cache_size_;
2582 cache_size_ = 1;
2584 ASSERT(cache_size_ <= kNumTransferEntries);
2658 if (used_slots_ < cache_size_) return true;
2660 if (cache_size_ == kNumTransferEntries) return false;
2665 cache_size_++;
2685 if (cache_size_ == 0) return false;
2687 if (force == false && used_slots_ == cache_size_) return false;
2694 ASSERT(used_slots_ <= cache_size_);
2695 ASSERT(0 <= cache_size_);
2696 if (cache_size_ == 0) return false;
2697 if (used_slots_ == cache_size_) {
2701 cache_size_--;
2706 cache_size_--;