HomeSort by relevance Sort by last modified time
    Searched refs:stack_size_ (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium/base/threading/
simple_thread.h 62 Options() : stack_size_(0) { }
68 void set_stack_size(size_t size) { stack_size_ = size; }
69 size_t stack_size() const { return stack_size_; }
71 size_t stack_size_; member in class:base::SimpleThread::Options
  /external/chromium_org/base/threading/
simple_thread.h 62 Options() : stack_size_(0) { }
68 void set_stack_size(size_t size) { stack_size_ = size; }
69 size_t stack_size() const { return stack_size_; }
71 size_t stack_size_; member in class:base::SimpleThread::Options
  /external/compiler-rt/lib/asan/
asan_fake_stack.h 81 uptr StackSize() const { return stack_size_; }
105 uptr stack_size_; member in class:__asan::FakeStack
asan_fake_stack.cc 78 stack_size_ = stack_size;
97 return RoundUpTo(Min(ClassSize(size_class) * kMaxRecursionDepth, stack_size_),
  /art/runtime/
thread_pool.h 43 return stack_size_;
55 const size_t stack_size_; member in class:art::ThreadPoolWorker
runtime_test.cc 66 EXPECT_EQ(1 * MB, parsed->stack_size_);
thread_pool.cc 32 stack_size_(stack_size) {
thread.cc 426 stack_size_ = stack_size;
428 if (stack_size_ <= kStackOverflowReservedBytes) {
429 LOG(FATAL) << "Attempt to attach a thread with a too-small stack (" << stack_size_ << " bytes)";
453 size_t old_stack_size = stack_size_;
454 stack_size_ = default_stack_size;
455 stack_begin_ += (old_stack_size - stack_size_);
457 << " to " << PrettySize(stack_size_)
770 << " stackSize=" << PrettySize(thread->stack_size_) << "\n";
    [all...]
thread.h 444 return stack_size_ - (stack_end_ - stack_begin_);
715 size_t stack_size_; variable
runtime.h 114 size_t stack_size_; member in class:art::Runtime::ParsedOptions
runtime.cc 345 parsed->stack_size_ = 0; // 0 means default.
505 parsed->stack_size_ = size;
865 default_stack_size_ = options->stack_size_;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 260 stack_size_ = stack_size;
264 guard_start_ = (uptr)MmapOrDie(stack_size_ + guard_size_,
269 UnmapOrDie((void *)guard_start_, stack_size_ + guard_size_);
272 return (void *)(guard_start_ + stack_size_ + guard_size_);
276 uptr stack_size_; member in class:__sanitizer::ScopedStackSpaceWithGuard
  /external/v8/src/
platform.h 432 Options() : name_("v8:<unknown>"), stack_size_(0) {}
434 : name_(name), stack_size_(stack_size) {}
437 int stack_size() const { return stack_size_; }
441 int stack_size_; member in class:v8::internal::Thread::Options
506 int stack_size_; member in class:v8::internal::Thread
platform-nullos.cc 345 stack_size_(options.stack_size) {
353 stack_size_(0) {
platform-cygwin.cc 387 stack_size_(options.stack_size()) {
418 if (stack_size_ > 0) {
420 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-macos.cc 493 stack_size_(options.stack_size()) {
542 if (stack_size_ > 0) {
544 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-solaris.cc 473 stack_size_(options.stack_size()) {
504 if (stack_size_ > 0) {
506 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-freebsd.cc 481 stack_size_(options.stack_size()) {
512 if (stack_size_ > 0) {
514 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-linux.cc 735 stack_size_(options.stack_size()) {
771 if (stack_size_ > 0) {
773 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
    [all...]
platform-openbsd.cc 529 stack_size_(options.stack_size()) {
565 if (stack_size_ > 0) {
567 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
  /external/chromium_org/v8/src/
platform.h 623 Options() : name_("v8:<unknown>"), stack_size_(0) {}
625 : name_(name), stack_size_(stack_size) {}
628 int stack_size() const { return stack_size_; }
632 int stack_size_; member in class:v8::internal::Thread::Options
711 int stack_size_; member in class:v8::internal::Thread
platform-nullos.cc 416 stack_size_(options.stack_size),
425 stack_size_(0) {
platform-posix.cc 544 stack_size_(options.stack_size()),
609 if (stack_size_ > 0) {
610 result = pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
  /external/chromium_org/v8/src/mips/
simulator-mips.h 368 static const size_t stack_size_ = 1 * 1024*1024; member in class:v8::internal::Simulator
  /external/v8/src/mips/
simulator-mips.h 367 static const size_t stack_size_ = 1 * 1024*1024; member in class:v8::internal::Simulator

Completed in 612 milliseconds

1 2