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

  /art/runtime/
monitor_pool.cc 32 first_free_(nullptr) {
42 DCHECK(first_free_ == nullptr);
88 first_free_ = last;
115 if (first_free_ == nullptr) {
120 Monitor* mon_uninitialized = first_free_;
121 first_free_ = first_free_->next_free_;
144 monitor->next_free_ = first_free_;
145 first_free_ = monitor;
monitor_pool.h 238 Monitor* first_free_ GUARDED_BY(Locks::allocated_monitor_ids_lock_);
  /external/v8/src/
global-handles.cc 477 parameter_or_next_free_.next_free = global_handles->first_free_;
478 global_handles->first_free_ = this;
543 first_free_(NULL),
560 if (first_free_ == NULL) {
562 first_block_->PutNodesOnFreeList(&first_free_);
564 DCHECK(first_free_ != NULL);
566 Node* result = first_free_;
567 first_free_ = result->next_free();
    [all...]
global-handles.h 335 Node* first_free_; member in class:v8::internal::GlobalHandles

Completed in 1183 milliseconds