HomeSort by relevance Sort by last modified time
    Searched full:memory_size_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/v8/src/
regexp-stack.cc 74 if (thread_local_.memory_size_ > kMinimumStackSize) {
82 if (memory_size_ > 0) {
92 if (thread_local_.memory_size_ < size) {
94 if (thread_local_.memory_size_ > 0) {
98 new_memory + size - thread_local_.memory_size_),
100 thread_local_.memory_size_);
104 thread_local_.memory_size_ = size;
107 return thread_local_.memory_ + thread_local_.memory_size_;
regexp-stack.h 67 ASSERT(thread_local_.memory_size_ != 0);
68 return thread_local_.memory_ + thread_local_.memory_size_;
72 size_t stack_capacity() { return thread_local_.memory_size_; }
109 // If memory_size_ > 0 then memory_ must be non-NULL.
111 size_t memory_size_; member in struct:v8::internal::RegExpStack::ThreadLocal
115 memory_size_ = 0;
128 return reinterpret_cast<Address>(&thread_local_.memory_size_);
  /external/v8/src/
regexp-stack.cc 75 if (thread_local_.memory_size_ > kMinimumStackSize) {
83 if (memory_size_ > 0) {
93 if (thread_local_.memory_size_ < size) {
95 if (thread_local_.memory_size_ > 0) {
98 new_memory + size - thread_local_.memory_size_),
100 thread_local_.memory_size_);
104 thread_local_.memory_size_ = size;
107 return thread_local_.memory_ + thread_local_.memory_size_;
regexp-stack.h 67 ASSERT(thread_local_.memory_size_ != 0);
68 return thread_local_.memory_ + thread_local_.memory_size_;
72 size_t stack_capacity() { return thread_local_.memory_size_; }
109 // If memory_size_ > 0 then memory_ must be non-NULL.
111 size_t memory_size_; member in struct:v8::internal::RegExpStack::ThreadLocal
115 memory_size_ = 0;
128 return reinterpret_cast<Address>(&thread_local_.memory_size_);

Completed in 1248 milliseconds