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

  /external/v8/src/
store-buffer.cc 41 old_start_(NULL),
68 old_top_ = old_start_ =
72 ASSERT((reinterpret_cast<uintptr_t>(old_start_) & 0xfff) == 0);
76 old_limit_ = old_start_ + initial_length;
77 old_reserved_limit_ = old_start_ + kOldStoreBufferLength;
80 reinterpret_cast<void*>(old_start_),
81 (old_limit_ - old_start_) * kPointerSize,
114 old_start_ = old_top_ = old_limit_ = old_reserved_limit_ = NULL;
155 Address* write = old_start_;
157 for (Address* read = old_start_; read < old_top_; read++)
    [all...]
store-buffer.h 97 Object*** Start() { return reinterpret_cast<Object***>(old_start_); }
134 Address* old_start_; member in class:v8::internal::StoreBuffer

Completed in 2153 milliseconds