HomeSort by relevance Sort by last modified time
    Searched full:stack_size_ (Results 1 - 12 of 12) 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-openbsd.cc 373 stack_size_(options.stack_size) {
381 stack_size_(0) {
413 if (stack_size_ > 0) {
415 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-nullos.cc 315 stack_size_(options.stack_size) {
324 stack_size_(0) {
platform-cygwin.cc 377 stack_size_(options.stack_size) {
385 stack_size_(0) {
417 if (stack_size_ > 0) {
419 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-freebsd.cc 428 stack_size_(options.stack_size) {
436 stack_size_(0) {
468 if (stack_size_ > 0) {
470 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-macos.cc 404 stack_size_(options.stack_size) {
412 stack_size_(0) {
462 if (stack_size_ > 0) {
464 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-solaris.cc 387 stack_size_(options.stack_size) {
395 stack_size_(0) {
427 if (stack_size_ > 0) {
429 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-linux.cc 602 stack_size_(options.stack_size) {
610 stack_size_(0) {
645 if (stack_size_ > 0) {
647 pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_));
platform-win32.cc     [all...]
platform.h 448 int stack_size_; member in class:v8::internal::Thread
  /external/v8/src/mips/
simulator-mips.h 338 size_t stack_size_; member in class:v8::internal::Simulator
simulator-mips.cc 757 stack_size_ = 1 * 1024*1024; // allocate 1MB for stack
758 stack_ = reinterpret_cast<char*>(malloc(stack_size_));
778 registers_[sp] = reinterpret_cast<int32_t>(stack_) + stack_size_ - 64;
    [all...]

Completed in 207 milliseconds