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

  /art/runtime/
indirect_reference_table.cc 51 alloc_entries_ = initialCount;
61 alloc_entries_ = max_entries_ = -1;
87 DCHECK_LE(alloc_entries_, max_entries_);
90 if (topIndex == alloc_entries_) {
98 size_t newSize = alloc_entries_ * 2;
102 DCHECK_GT(newSize, alloc_entries_);
110 << alloc_entries_ << " to " << newSize
116 memset(slot_data_ + alloc_entries_, 0, (newSize - alloc_entries_) * sizeof(IndirectRefSlot));
118 alloc_entries_ = newSize
    [all...]
indirect_reference_table.h 147 * If "alloc_entries_" is not equal to "max_entries_", the table may expand
372 size_t alloc_entries_; member in class:art::IndirectReferenceTable
  /dalvik/vm/
IndirectRefTable.cpp 44 alloc_entries_ = initialCount;
58 alloc_entries_ = max_entries_ = -1;
70 assert(alloc_entries_ <= max_entries_);
93 if (topIndex == alloc_entries_) {
101 size_t newSize = alloc_entries_ * 2;
105 assert(newSize > alloc_entries_);
113 alloc_entries_, newSize, max_entries_);
117 memset(newTable + alloc_entries_, 0xd1,
118 (newSize - alloc_entries_) * sizeof(IndirectRefSlot));
120 alloc_entries_ = newSize
    [all...]
IndirectRefTable.h 135 * If "alloc_entries_" is not equal to "max_entries_", the table may expand
259 size_t alloc_entries_; member in struct:IndirectRefTable

Completed in 1955 milliseconds