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

  /external/v8/src/regexp/
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 48 DCHECK(thread_local_.memory_size_ != 0);
49 return thread_local_.memory_ + thread_local_.memory_size_;
53 size_t stack_capacity() { return thread_local_.memory_size_; }
90 // If memory_size_ > 0 then memory_ must be non-NULL.
92 size_t memory_size_; member in struct:v8::internal::RegExpStack::ThreadLocal
96 memory_size_ = 0;
109 return reinterpret_cast<Address>(&thread_local_.memory_size_);
  /external/google-breakpad/src/common/mac/
macho_walker.cc 56 memory_size_(0),
69 memory_size_(size),
108 if (offset + size > memory_size_) {
109 if (static_cast<size_t>(offset) >= memory_size_)
111 size = memory_size_ - static_cast<size_t>(offset);
macho_id.h 117 size_t memory_size_; member in class:MacFileUtilities::MachoID
macho_walker.h 97 size_t memory_size_; member in class:MacFileUtilities::MachoWalker
macho_id.cc 60 memory_size_(0),
69 memory_size_(size),
244 MachoWalker walker(memory_, memory_size_, callback, context);

Completed in 64 milliseconds