HomeSort by relevance Sort by last modified time
    Searched defs:kMaxStackSize (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/base/debug/
trace_event_memory.cc 24 const size_t kMaxStackSize = 32;
50 memset(category_stack_, 0, kMaxStackSize * sizeof(category_stack_[0]));
55 const char* category_stack_[kMaxStackSize];
116 // Copy at most kMaxStackSize stack entries.
117 const size_t count = std::min(stack->index_, kMaxStackSize);
243 // |kMaxStackSize| entries.
244 if (index < kMaxStackSize)
  /external/chromium_org/v8/preparser/
preparser-process.cc 359 size_t kMaxStackSize = 64 * 1024 * sizeof(void*); // NOLINT
360 v8::PreParserData data = v8::Preparse(&input_buffer, kMaxStackSize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 332 const uptr kMaxStackSize = 32 * 1024 * 1024;
336 kMaxStackSize);
337 SetStackSizeLimitInBytes(kMaxStackSize);
  /external/v8/preparser/
preparser-process.cc 357 size_t kMaxStackSize = 64 * 1024 * sizeof(void*); // NOLINT
358 v8::PreParserData data = v8::Preparse(&input_buffer, kMaxStackSize);
  /dalvik/vm/
Thread.h 80 #define kMaxStackSize (256*1024 + STACK_OVERFLOW_RESERVE)

Completed in 95 milliseconds