/external/chromium_org/third_party/tcmalloc/chromium/src/ |
profiledata.h | 103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile 127 // kMaxStackDepth stack entries will be recorded, starting with 156 Slot stack[kMaxStackDepth]; // Stack contents
|
heap-profile-stats.h | 44 static const int kMaxStackDepth = 32;
|
memory_region_map.h | 74 static const int kMaxStackDepth = 32; 140 const void* call_stack[kMaxStackDepth]; // caller address stack array 194 call_stack_depth <= kMaxStackDepth, ""); 205 // Note: call_stack[kMaxStackDepth] as a member lets us make Region 209 // only one call_stack element out of kMaxStackDepth is actually needed. 344 static const void* saved_buckets_keys_[20][kMaxStackDepth] GUARDED_BY(lock_);
|
common.h | 260 static const int kMaxStackDepth = 31; 264 void* stack[kMaxStackDepth];
|
profiledata.cc | 54 const int ProfileData::kMaxStackDepth; 265 if (depth > kMaxStackDepth) depth = kMaxStackDepth;
|
heap-profile-table.h | 61 static const int kMaxStackDepth = 32; 110 static int GetCallerStackTrace(int skip_count, void* stack[kMaxStackDepth]);
|
heap-profiler.cc | 381 void* stack[HeapProfileTable::kMaxStackDepth]; 503 // call stack traces of at least size kMaxStackDepth: 504 MemoryRegionMap::Init(HeapProfileTable::kMaxStackDepth,
|
profiler.cc | 269 void* stack[ProfileData::kMaxStackDepth];
|
memory_region_map.cc | 157 const void* MemoryRegionMap::saved_buckets_keys_[20][kMaxStackDepth]; 197 RAW_CHECK(max_stack_depth <= kMaxStackDepth, 198 "need to increase kMaxStackDepth?"); [all...] |
page_heap.cc | 460 t->depth = GetStackTrace(t->stack, kMaxStackDepth-1, 3); 462 t->stack[kMaxStackDepth-1] = reinterpret_cast<void*>(Static::growth_stacks());
|
heap-profile-table.cc | 108 /*static*/ const int HeapProfileTable::kMaxStackDepth; 210 int skip_count, void* stack[kMaxStackDepth]) { 212 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
|
tcmalloc.cc | 524 t->stack[tcmalloc::kMaxStackDepth-1])) { 544 t->stack[tcmalloc::kMaxStackDepth-1])) { [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
profiledata.h | 103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile 127 // kMaxStackDepth stack entries will be recorded, starting with 156 Slot stack[kMaxStackDepth]; // Stack contents
|
common.h | 237 static const int kMaxStackDepth = 31; 241 void* stack[kMaxStackDepth];
|
memory_region_map.h | 73 static const int kMaxStackDepth = 32; 128 const void* call_stack[kMaxStackDepth]; // caller address stack array 182 call_stack_depth <= kMaxStackDepth, ""); 193 // Note: call_stack[kMaxStackDepth] as a member lets us make Region 197 // only one call_stack element out of kMaxStackDepth is actually needed.
|
profiledata.cc | 54 const int ProfileData::kMaxStackDepth; 265 if (depth > kMaxStackDepth) depth = kMaxStackDepth;
|
heap-profile-table.h | 56 static const int kMaxStackDepth = 32; 107 static int GetCallerStackTrace(int skip_count, void* stack[kMaxStackDepth]);
|
profiler.cc | 267 void* stack[ProfileData::kMaxStackDepth];
|
heap-profiler.cc | 302 void* stack[HeapProfileTable::kMaxStackDepth]; 424 // call stack traces of at least size kMaxStackDepth: 425 MemoryRegionMap::Init(HeapProfileTable::kMaxStackDepth);
|
heap-profile-table.cc | 104 /*static*/ const int HeapProfileTable::kMaxStackDepth; 219 int skip_count, void* stack[kMaxStackDepth]) { 221 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
|
page_heap.cc | 399 t->depth = GetStackTrace(t->stack, kMaxStackDepth-1, 3); 401 t->stack[kMaxStackDepth-1] = reinterpret_cast<void*>(Static::growth_stacks());
|
tcmalloc.cc | 496 t->stack[tcmalloc::kMaxStackDepth-1])) { 516 t->stack[tcmalloc::kMaxStackDepth-1])) { [all...] |
memory_region_map.cc | 189 RAW_CHECK(max_stack_depth <= kMaxStackDepth, 190 "need to increase kMaxStackDepth?");
|
/external/chromium_org/gpu/command_buffer/service/ |
common_decoder.h | 27 static const unsigned int kMaxStackDepth = 32;
|
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFDevice.cpp | 270 static const int kMaxStackDepth = 12; 271 GraphicStateEntry fEntries[kMaxStackDepth + 1]; 283 SkASSERT(fStackDepth < kMaxStackDepth); [all...] |