Searched refs:alloc_entries_ (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/
H A DIndirectRefTable.cpp44 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_
[all...]
H A DIndirectRefTable.h135 * If "alloc_entries_" is not equal to "max_entries_", the table may expand
259 size_t alloc_entries_; member in struct:IndirectRefTable

Completed in 35 milliseconds