Home
last modified time | relevance | path

Searched refs:idx_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/mirror/
Dobject_array.h177 ArrayIter(Container array, int32_t idx) NO_THREAD_SAFETY_ANALYSIS : array_(array), idx_(idx) { in ArrayIter()
189 return Ptr(other.array_) == Ptr(array_) && other.idx_ == idx_;
192 idx_++;
198 idx_++;
204 return array_->GetWithoutChecks(idx_);
208 return array_->GetWithoutChecks(idx_);
225 int32_t idx_; variable
Dobject_array-inl.h386 DCHECK_LE(0, idx_); in CheckIdx()
387 DCHECK_LE(idx_, array_->GetLength()); in CheckIdx()
/art/openjdkjvmti/
Dti_redefine.cc1421 RedefinitionDataIter(int32_t idx, RedefinitionDataHolder& holder) : idx_(idx), holder_(holder) {} in RedefinitionDataIter()
1431 return idx_ == other.idx_ && holder_ == other.holder_; in operator ==()
1440 idx_++; in operator ++()
1446 idx_++; in operator ++()
1457 idx_ += delta; in operator +=()
1467 return (*holder_.GetRedefinitions())[idx_]; in GetRedefinition()
1476 return holder_.GetSourceClassLoader(idx_); in GetSourceClassLoader()
1480 return holder_.GetJavaDexFile(idx_); in GetJavaDexFile()
1484 return holder_.GetNewDexFileCookie(idx_); in GetNewDexFileCookie()
1488 return holder_.GetNewDexCache(idx_); in GetNewDexCache()
[all …]
/art/runtime/gc/space/
Dregion_space.h396 : idx_(static_cast<size_t>(-1)), in Region()
410 idx_ = idx; in Init()
498 return idx_; in Idx()
619 size_t idx_; // The region's index in the region space. variable
Dregion_space.cc960 os << "Region[" << idx_ << "]=" in Dump()
1082 region_space->AdjustNonFreeRegionLimit(idx_); in MarkAsAllocated()
/art/runtime/gc/collector/
Dmark_compact.cc4318 while (!mark_compact_->mark_stack_->BumpBack(idx_, &start, &end)) { in Flush()
4322 while (idx_ > 0) { in Flush()
4323 *start++ = roots_[--idx_]; in Flush()
4330 if (UNLIKELY(idx_ >= kBufferSize)) { in Push()
4333 roots_[idx_++].Assign(obj); in Push()
4337 size_t idx_ = 0; member in art::gc::collector::MarkCompact::ThreadRootsVisitor