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

  /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/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 740 stack_size_(options.stack_size()) {
776 if (stack_size_ > 0) {
778 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_));
platform-win32.cc     [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.h 110 bool StackSize() { return stack_size_; }
132 size_t stack_size_; member in class:__asan::FakeStack
asan_allocator.cc 955 stack_size_ = stack_size;
972 return RoundUpToPowerOfTwo(stack_size_);
    [all...]
  /external/v8/src/mips/
simulator-mips.h 367 static const size_t stack_size_ = 1 * 1024*1024; member in class:v8::internal::Simulator
simulator-mips.cc 893 stack_ = reinterpret_cast<char*>(malloc(stack_size_));
913 registers_[sp] = reinterpret_cast<int32_t>(stack_) + stack_size_ - 64;
    [all...]

Completed in 172 milliseconds