Lines Matching refs:table_
79 table_ = reinterpret_cast<GcRoot<mirror::Object>*>(table_mem_map_->Begin()); in IndirectReferenceTable()
80 CHECK(table_ != nullptr); in IndirectReferenceTable()
81 memset(table_, 0xd1, initial_bytes); in IndirectReferenceTable()
106 DCHECK(table_ != NULL); in Add()
135 GcRoot<mirror::Object>* pScan = &table_[topIndex - 1]; in Add()
139 DCHECK_GE(pScan, table_ + prevState.parts.topIndex); in Add()
142 UpdateSlotAdd(obj, pScan - table_); in Add()
143 result = ToIndirectRef(pScan - table_); in Add()
150 table_[topIndex++] = GcRoot<mirror::Object>(obj); in Add()
184 DCHECK(table_ != NULL); in Remove()
216 table_[idx] = GcRoot<mirror::Object>(nullptr); in Remove()
223 << table_[topIndex - 1].Read<kWithoutReadBarrier>(); in Remove()
225 if (!table_[topIndex-1].IsNull()) { in Remove()
245 if (table_[idx].IsNull()) { in Remove()
253 table_[idx] = GcRoot<mirror::Object>(nullptr); in Remove()
275 mirror::Object* obj = table_[i].Read<kWithoutReadBarrier>(); in Dump()
283 obj = table_[i].Read(); in Dump()