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 490 parameter_or_next_free_.next_free = global_handles->first_free_;
491 global_handles->first_free_ = this;
556 first_free_(NULL),
573 if (first_free_ == NULL) {
575 first_block_->PutNodesOnFreeList(&first_free_);
577 DCHECK(first_free_ != NULL);
579 Node* result = first_free_;
580 first_free_ = result->next_free();
    [all...]
global-handles.h 336 Node* first_free_; member in class:v8::internal::GlobalHandles

Completed in 70 milliseconds