Searched refs:kMaxStackDepth (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-stats.h44 static const int kMaxStackDepth = 32; member in struct:HeapProfileBucket
H A Dprofiledata.h103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile member in class:ProfileData
127 // kMaxStackDepth stack entries will be recorded, starting with
156 Slot stack[kMaxStackDepth]; // Stack contents
H A Dmemory_region_map.h74 static const int kMaxStackDepth = 32; member in class:MemoryRegionMap
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_);
H A Dcommon.h260 static const int kMaxStackDepth = 31; member in namespace:tcmalloc
264 void* stack[kMaxStackDepth];
H A Dprofiledata.cc54 const int ProfileData::kMaxStackDepth; member in class:ProfileData
265 if (depth > kMaxStackDepth) depth = kMaxStackDepth;
H A Dheap-profile-table.h61 static const int kMaxStackDepth = 32; member in class:HeapProfileTable
110 static int GetCallerStackTrace(int skip_count, void* stack[kMaxStackDepth]);
H A Dprofiler.cc269 void* stack[ProfileData::kMaxStackDepth];
H A Dheap-profiler.cc381 void* stack[HeapProfileTable::kMaxStackDepth];
503 // call stack traces of at least size kMaxStackDepth:
504 MemoryRegionMap::Init(HeapProfileTable::kMaxStackDepth,
H A Dmemory_region_map.cc157 const void* MemoryRegionMap::saved_buckets_keys_[20][kMaxStackDepth];
197 RAW_CHECK(max_stack_depth <= kMaxStackDepth,
198 "need to increase kMaxStackDepth?");
H A Dpage_heap.cc460 t->depth = GetStackTrace(t->stack, kMaxStackDepth-1, 3);
462 t->stack[kMaxStackDepth-1] = reinterpret_cast<void*>(Static::growth_stacks());
H A Dheap-profile-table.cc108 /*static*/ const int HeapProfileTable::kMaxStackDepth; member in class:HeapProfileTable
210 int skip_count, void* stack[kMaxStackDepth]) {
212 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
H A Dtcmalloc.cc527 t->stack[tcmalloc::kMaxStackDepth-1])) {
547 t->stack[tcmalloc::kMaxStackDepth-1])) {
980 tmp.depth = GetStackTrace(tmp.stack, tcmalloc::kMaxStackDepth, 1);
1014 stack.depth = GetStackTrace(stack.stack, tcmalloc::kMaxStackDepth, 1);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiledata.h103 static const int kMaxStackDepth = 64; // Max stack depth stored in profile member in class:ProfileData
127 // kMaxStackDepth stack entries will be recorded, starting with
156 Slot stack[kMaxStackDepth]; // Stack contents
H A Dcommon.h237 static const int kMaxStackDepth = 31; member in namespace:tcmalloc
241 void* stack[kMaxStackDepth];
H A Dmemory_region_map.h73 static const int kMaxStackDepth = 32; member in class:MemoryRegionMap
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.
H A Dprofiledata.cc54 const int ProfileData::kMaxStackDepth; member in class:ProfileData
265 if (depth > kMaxStackDepth) depth = kMaxStackDepth;
H A Dheap-profile-table.h56 static const int kMaxStackDepth = 32; member in class:HeapProfileTable
107 static int GetCallerStackTrace(int skip_count, void* stack[kMaxStackDepth]);
H A Dprofiler.cc267 void* stack[ProfileData::kMaxStackDepth];
H A Dheap-profiler.cc302 void* stack[HeapProfileTable::kMaxStackDepth];
424 // call stack traces of at least size kMaxStackDepth:
425 MemoryRegionMap::Init(HeapProfileTable::kMaxStackDepth);
H A Dheap-profile-table.cc104 /*static*/ const int HeapProfileTable::kMaxStackDepth; member in class:HeapProfileTable
219 int skip_count, void* stack[kMaxStackDepth]) {
221 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
H A Dpage_heap.cc399 t->depth = GetStackTrace(t->stack, kMaxStackDepth-1, 3);
401 t->stack[kMaxStackDepth-1] = reinterpret_cast<void*>(Static::growth_stacks());
H A Dtcmalloc.cc496 t->stack[tcmalloc::kMaxStackDepth-1])) {
516 t->stack[tcmalloc::kMaxStackDepth-1])) {
969 tmp.depth = GetStackTrace(tmp.stack, tcmalloc::kMaxStackDepth, 1);
1003 stack.depth = GetStackTrace(stack.stack, tcmalloc::kMaxStackDepth, 1);
H A Dmemory_region_map.cc189 RAW_CHECK(max_stack_depth <= kMaxStackDepth,
190 "need to increase kMaxStackDepth?");
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.h27 static const unsigned int kMaxStackDepth = 32; member in class:gpu::CommonDecoder
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp254 static const int kMaxStackDepth = 12; member in class:GraphicStackState
255 GraphicStateEntry fEntries[kMaxStackDepth + 1];
267 SkASSERT(fStackDepth < kMaxStackDepth);

Completed in 336 milliseconds

12