Home
last modified time | relevance | path

Searched refs:entries_ (Results 1 – 13 of 13) sorted by relevance

/art/runtime/verifier/
Dreg_type_cache.cc59 entries_.push_back(UndefinedType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
60 entries_.push_back(ConflictType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
61 entries_.push_back(NullType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
62 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
63 entries_.push_back(ByteType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
64 entries_.push_back(ShortType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
65 entries_.push_back(CharType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
66 entries_.push_back(IntegerType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
67 entries_.push_back(LongLoType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
68 entries_.push_back(LongHiType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
[all …]
Dreg_type_cache-inl.h33 DCHECK_LT(id, entries_.size()); in GetFromId()
34 const RegType* result = entries_[id]; in GetFromId()
180 entries_.push_back(new_entry); in AddEntry()
Dreg_type_cache.h113 return entries_.size(); in GetCacheSize()
194 ScopedArenaVector<const RegType*> entries_; variable
/art/runtime/
Dtype_lookup_table.cc37 entries_.release(); in ~TypeLookupTable()
72 entries_(storage != nullptr ? reinterpret_cast<Entry*>(storage) : new Entry[mask_ + 1]), in TypeLookupTable()
112 entries_(reinterpret_cast<Entry*>(const_cast<uint8_t*>(raw_data))), in TypeLookupTable()
117 if (!entries_[pos].IsEmpty()) { in SetOnInitialPos()
120 entries_[pos] = entry; in SetOnInitialPos()
121 entries_[pos].next_pos_delta = 0; in SetOnInitialPos()
128 while (!entries_[next_pos].IsEmpty()) { in Insert()
132 entries_[pos].next_pos_delta = delta; in Insert()
133 entries_[next_pos] = entry; in Insert()
134 entries_[next_pos].next_pos_delta = 0; in Insert()
[all …]
Dtype_lookup_table.h50 const Entry* entry = &entries_[pos]; in Lookup()
59 entry = &entries_[pos]; in Lookup()
76 return reinterpret_cast<const uint8_t*>(entries_.get()); in RawData()
166 std::unique_ptr<Entry[]> entries_; variable
Dreference_table.cc43 entries_.reserve(initial_size); in ReferenceTable()
52 if (entries_.size() >= max_size_) { in Add()
56 entries_.push_back(GcRoot<mirror::Object>(obj)); in Add()
61 for (int i = entries_.size() - 1; i >= 0; --i) { in Remove()
62 ObjPtr<mirror::Object> entry = entries_[i].Read(); in Remove()
64 entries_.erase(entries_.begin() + i); in Remove()
117 return entries_.size(); in Size()
122 Dump(os, entries_); in Dump()
358 for (GcRoot<mirror::Object>& root : entries_) { in VisitRoots()
Dreference_table.h66 Table entries_; variable
/art/runtime/gc/
Dallocation_record.h227 if (entries_.size() == alloc_record_max_) { in Put()
228 entries_.pop_front(); in Put()
230 entries_.push_back(EntryPair(GcRoot<mirror::Object>(obj), std::move(record))); in Put()
234 return entries_.size(); in Size()
239 size_t sz = entries_.size(); in GetRecentAllocationSize()
270 return entries_.begin(); in Begin()
276 return entries_.end(); in End()
282 return entries_.rbegin(); in RBegin()
288 return entries_.rend(); in REnd()
305 EntryList entries_ GUARDED_BY(Locks::alloc_tracker_lock_);
Dallocation_record.cc108 for (auto it = entries_.rbegin(), end = entries_.rend(); it != end; ++it) { in VisitRoots()
145 const size_t delete_bound = std::max(entries_.size(), recent_record_max_) - recent_record_max_; in SweepAllocationRecords()
146 for (auto it = entries_.begin(), end = entries_.end(); it != end;) { in SweepAllocationRecords()
158 it = entries_.erase(it); in SweepAllocationRecords()
318 entries_.clear(); in Clear()
/art/compiler/debug/dwarf/
Ddebug_info_entry_writer.h204 : Writer<Vector>(&entries_),
206 entries_(alloc),
217 Vector entries_; variable
/art/compiler/jit/
Djit_logger.cc189 PerfJitDebugEntry entries_[0]; // Followed by entry_count_ instances of PerfJitDebugEntry. member
/art/libdexfile/dex/
Ddex_file.h409 uint32_t entries_[1]; member
846 return GetAnnotationItemAtOffset(set_item->entries_[index]); in GetAnnotationItem()
Ddex_file_verifier.cc2541 const uint32_t* offsets = set->entries_; in CheckInterAnnotationSetItem()