Home | History | Annotate | Download | only in vm

Lines Matching defs:i_

205             table_(table), i_(i), capacity_(capacity) {
210 ++i_;
216 return &table_[i_].obj;
220 return (i_ == rhs.i_ && table_ == rhs.table_);
226 while (i_ < capacity_ && (table_[i_].obj == NULL
227 || table_[i_].obj == kClearedJniWeakGlobal)) {
228 ++i_;
233 size_t i_;