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

  /external/v8/src/
regexp-stack.h 52 ASSERT(thread_local_.memory_size_ != 0);
53 return thread_local_.memory_ + thread_local_.memory_size_;
57 static size_t stack_capacity() { return thread_local_.memory_size_; }
92 memory_size_(0),
94 // If memory_size_ > 0 then memory_ must be non-NULL.
96 size_t memory_size_; member in struct:v8::internal::RegExpStack::ThreadLocal
108 return reinterpret_cast<Address>(&thread_local_.memory_size_);
regexp-stack.cc 65 if (thread_local_.memory_size_ > kMinimumStackSize) {
73 if (thread_local_.memory_size_ > 0) {
83 if (thread_local_.memory_size_ < size) {
85 if (thread_local_.memory_size_ > 0) {
88 new_memory + size - thread_local_.memory_size_),
90 thread_local_.memory_size_);
94 thread_local_.memory_size_ = size;
97 return thread_local_.memory_ + thread_local_.memory_size_;

Completed in 18 milliseconds