Home
last modified time | relevance | path

Searched refs:num_objects_to_move (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/tcmalloc/vendor/src/
Dcentral_freelist.cc65 int32_t objs_to_move = Static::sizemap()->num_objects_to_move(cl); in Init()
232 if (N == Static::sizemap()->num_objects_to_move(size_class_) && in InsertRange()
248 if (N == Static::sizemap()->num_objects_to_move(size_class_) && in RemoveRange()
361 return used_slots_ * Static::sizemap()->num_objects_to_move(size_class_); in tc_length()
Dthread_cache.cc157 const int batch_size = Static::sizemap()->num_objects_to_move(cl); in FetchFromCentralCache()
192 const int batch_size = Static::sizemap()->num_objects_to_move(cl); in ListTooLong()
223 int batch_size = Static::sizemap()->num_objects_to_move(cl); in ReleaseToCentralCache()
259 const int batch_size = Static::sizemap()->num_objects_to_move(cl); in Scavenge()
Dcommon.h221 inline int num_objects_to_move(size_t cl) { in num_objects_to_move() function
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dcentral_freelist.cc65 int32_t objs_to_move = Static::sizemap()->num_objects_to_move(cl); in Init()
231 if (N == Static::sizemap()->num_objects_to_move(size_class_) && in InsertRange()
247 if (N == Static::sizemap()->num_objects_to_move(size_class_) && in RemoveRange()
357 return used_slots_ * Static::sizemap()->num_objects_to_move(size_class_); in tc_length()
Dthread_cache.cc160 const int batch_size = Static::sizemap()->num_objects_to_move(cl); in FetchFromCentralCache()
198 const int batch_size = Static::sizemap()->num_objects_to_move(cl); in ListTooLong()
229 int batch_size = Static::sizemap()->num_objects_to_move(cl); in ReleaseToCentralCache()
265 const int batch_size = Static::sizemap()->num_objects_to_move(cl); in Scavenge()
Dcommon.h238 inline int num_objects_to_move(size_t cl) { in num_objects_to_move() function
/external/chromium_org/third_party/WebKit/Source/wtf/
DFastMalloc.cpp478 static int num_objects_to_move[kNumClasses]; variable
822 num_objects_to_move[cl] = NumMoveSize(ByteSizeForClass(cl)); in InitSizeClasses()
1119 return used_slots_ * num_objects_to_move[size_class_]; in tc_length()
2699 if (N == num_objects_to_move[size_class_] && in InsertRange()
2717 if (num == num_objects_to_move[size_class_] && used_slots_ > 0) { in RemoveRange()
2923 ReleaseToCentralCache(cl, num_objects_to_move[cl]); in Deallocate()
2930 int fetch_count = num_objects_to_move[cl]; in FetchFromCentralCache()
2946 int batch_size = num_objects_to_move[cl]; in ReleaseToCentralCache()