Searched refs:used_slots_ (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcentral_freelist.cc77 used_slots_ = 0;
167 if (used_slots_ < cache_size_) return true;
206 if (force == false && used_slots_ == cache_size_) return false;
213 ASSERT(used_slots_ <= cache_size_);
216 if (used_slots_ == cache_size_) {
221 used_slots_--;
222 ReleaseListToSpans(tc_slots_[used_slots_].head);
233 int slot = used_slots_++;
248 used_slots_ > 0) {
249 int slot = --used_slots_;
[all...]
H A Dcentral_freelist.h171 int32_t used_slots_; member in class:tcmalloc::CentralFreeList
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcentral_freelist.cc77 used_slots_ = 0;
168 if (used_slots_ < cache_size_) return true;
207 if (force == false && used_slots_ == cache_size_) return false;
214 ASSERT(used_slots_ <= cache_size_);
217 if (used_slots_ == cache_size_) {
222 used_slots_--;
223 ReleaseListToSpans(tc_slots_[used_slots_].head);
234 int slot = used_slots_++;
249 used_slots_ > 0) {
250 int slot = --used_slots_;
[all...]
H A Dcentral_freelist.h171 int32_t used_slots_; member in class:tcmalloc::CentralFreeList
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFastMalloc.cpp1149 return used_slots_ * num_objects_to_move[size_class_];
1243 int32_t used_slots_;
2615 used_slots_ = 0;
2690 if (used_slots_ < cache_size_) return true;
2719 if (force == false && used_slots_ == cache_size_) return false;
2726 ASSERT(used_slots_ <= cache_size_);
2729 if (used_slots_ == cache_size_) {
2734 used_slots_--;
2735 ReleaseListToSpans(tc_slots_[used_slots_].head);
2746 int slot = used_slots_
[all...]

Completed in 80 milliseconds