Searched refs:memory_size_ (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dregexp-stack.cc75 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_;
H A Dregexp-stack.h67 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 59 milliseconds