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

  /external/chromium_org/v8/src/
regexp-stack.cc 51 if (thread_local_.memory_size_ > kMinimumStackSize) {
59 if (memory_size_ > 0) {
69 if (thread_local_.memory_size_ < size) {
71 if (thread_local_.memory_size_ > 0) {
74 thread_local_.memory_size_),
76 thread_local_.memory_size_);
80 thread_local_.memory_size_ = size;
83 return thread_local_.memory_ + thread_local_.memory_size_;
regexp-stack.h 44 DCHECK(thread_local_.memory_size_ != 0);
45 return thread_local_.memory_ + thread_local_.memory_size_;
49 size_t stack_capacity() { return thread_local_.memory_size_; }
86 // If memory_size_ > 0 then memory_ must be non-NULL.
88 size_t memory_size_; member in struct:v8::internal::RegExpStack::ThreadLocal
92 memory_size_ = 0;
105 return reinterpret_cast<Address>(&thread_local_.memory_size_);

Completed in 1255 milliseconds