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

  /art/compiler/optimizing/
register_allocator.cc 180 : current_interval_(interval),
183 bool Done() const { return current_interval_ == nullptr; }
185 LiveInterval* CurrentInterval() const { return current_interval_; }
190 current_interval_ = current_interval_->GetNextSibling();
191 if (current_interval_ != nullptr) {
192 current_range_ = current_interval_->GetFirstRange();
198 LiveInterval* current_interval_; member in class:art::AllRangesIterator
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator.cc 123 current_interval_(NULL),
241 if (current_interval_ == NULL) return first_interval_;
242 if (current_interval_->start().Value() > position.Value()) {
243 current_interval_ = NULL;
246 return current_interval_;
255 current_interval_ == NULL ? LifetimePosition::Invalid()
256 : current_interval_->start();
258 current_interval_ = to_start_of;
334 current_interval_ = NULL;
    [all...]
lithium-allocator.h 375 mutable UseInterval* current_interval_; member in class:v8::internal::LiveRange

Completed in 5256 milliseconds