Searched refs:stack_size_ (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/mojo/public/cpp/utility/
H A Dthread.h27 Options() : stack_size_(0) {}
30 size_t stack_size() const { return stack_size_; }
31 void set_stack_size(size_t stack_size) { stack_size_ = stack_size; }
34 size_t stack_size_; member in class:mojo::Thread::Options
/external/chromium_org/base/threading/
H A Dsimple_thread.h62 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/v8/src/
H A Dbackground-parsing-task.cc13 : source_(source), options_(options), stack_size_(stack_size) {
43 uintptr_t limit = reinterpret_cast<uintptr_t>(&limit) - stack_size_ * KB;
H A Dbackground-parsing-task.h62 int stack_size_; member in class:v8::internal::BackgroundParsingTask
/external/chromium_org/v8/src/base/platform/
H A Dplatform.h420 Options() : name_("v8:<unknown>"), stack_size_(0) {}
422 : name_(name), stack_size_(stack_size) {}
425 int stack_size() const { return stack_size_; }
429 int stack_size_; member in class:v8::base::Thread::Options
508 int stack_size_; member in class:v8::base::Thread
H A Dplatform-posix.cc457 stack_size_(options.stack_size()),
459 if (stack_size_ > 0 && static_cast<size_t>(stack_size_) < PTHREAD_STACK_MIN) {
460 stack_size_ = PTHREAD_STACK_MIN;
525 if (stack_size_ > 0) {
526 result = pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
H A Dplatform-win32.cc1333 : stack_size_(options.stack_size()),
1359 static_cast<unsigned>(stack_size_),
/external/compiler-rt/lib/asan/
H A Dasan_thread.h67 uptr stack_size() { return stack_size_; }
121 // stack_size_ == stack_top_ - stack_bottom_;
123 uptr stack_size_; member in class:__asan::AsanThread
H A Dasan_thread.cc186 GetThreadStackAndTls(tid() == 0, &stack_bottom_, &stack_size_, &tls_begin_, local
188 stack_top_ = stack_bottom_ + stack_size_;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc277 stack_size_ = stack_size;
281 guard_start_ = (uptr)MmapOrDie(stack_size_ + guard_size_,
286 UnmapOrDie((void *)guard_start_, stack_size_ + guard_size_);
289 return (void *)(guard_start_ + stack_size_ + guard_size_);
293 uptr stack_size_; member in class:__sanitizer::ScopedStackSpaceWithGuard
/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.h353 static const size_t stack_size_ = 1 * 1024*1024; member in class:v8::internal::Simulator
H A Dsimulator-mips.cc958 stack_ = reinterpret_cast<char*>(malloc(stack_size_));
978 registers_[sp] = reinterpret_cast<int32_t>(stack_) + stack_size_ - 64;
/external/chromium_org/v8/src/mips64/
H A Dsimulator-mips64.h403 size_t stack_size_; member in class:v8::internal::Simulator
H A Dsimulator-mips64.cc888 stack_size_ = FLAG_sim_stack_size * KB;
889 stack_ = reinterpret_cast<char*>(malloc(stack_size_));
909 registers_[sp] = reinterpret_cast<int64_t>(stack_) + stack_size_ - 64;
/external/vixl/src/a64/
H A Dsimulator-a64.h640 static const int stack_size_ = 2 * 1024 + 2 * stack_protection_size_; member in class:vixl::Simulator
H A Dsimulator-a64.cc74 stack_ = new byte[stack_size_];
78 byte * tos = stack_ + stack_size_;
/external/chromium_org/v8/src/arm64/
H A Dsimulator-arm64.h847 size_t stack_size_;
H A Dsimulator-arm64.cc380 stack_size_ = (FLAG_sim_stack_size * KB) + (2 * stack_protection_size_);
381 stack_ = reinterpret_cast<uintptr_t>(new byte[stack_size_]);
383 uintptr_t tos = stack_ + stack_size_ - stack_protection_size_;

Completed in 1432 milliseconds