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 31 : num_chunks_(0), capacity_(0), first_free_(nullptr) {
38 DCHECK(first_free_ == nullptr);
88 first_free_ = last;
98 if (first_free_ == nullptr) {
103 Monitor* mon_uninitialized = first_free_;
104 first_free_ = first_free_->next_free_;
127 monitor->next_free_ = first_free_;
128 first_free_ = monitor;
monitor_pool.h 180 Monitor* first_free_ GUARDED_BY(Locks::allocated_monitor_ids_lock_);
  /external/chromium_org/v8/src/
global-handles.cc 391 parameter_or_next_free_.next_free = global_handles->first_free_;
392 global_handles->first_free_ = this;
432 first_free_(NULL),
449 if (first_free_ == NULL) {
451 first_block_->PutNodesOnFreeList(&first_free_);
453 DCHECK(first_free_ != NULL);
455 Node* result = first_free_;
456 first_free_ = result->next_free();
global-handles.h 281 Node* first_free_; member in class:v8::internal::GlobalHandles

Completed in 88 milliseconds