Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type_cache.cc65 entries_.push_back(UndefinedType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
66 entries_.push_back(ConflictType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
67 entries_.push_back(NullType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
68 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
69 entries_.push_back(ByteType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
70 entries_.push_back(ShortType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
71 entries_.push_back(CharType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
72 entries_.push_back(IntegerType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
73 entries_.push_back(LongLoType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
74 entries_.push_back(LongHiType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
[all …]
Dreg_type_cache-inl.h34 DCHECK_LT(id, entries_.size()); in GetFromId()
35 const RegType* result = entries_[id]; in GetFromId()
186 entries_.push_back(new_entry); in AddEntry()
Dreg_type_cache.h123 return entries_.size(); in GetCacheSize()
209 ScopedArenaVector<const RegType*> entries_; variable
/art/runtime/gc/
Dallocation_record.h232 if (entries_.size() == alloc_record_max_) { in Put()
233 entries_.pop_front(); in Put()
235 entries_.push_back(EntryPair(GcRoot<mirror::Object>(obj), std::move(record))); in Put()
239 return entries_.size(); in Size()
244 size_t sz = entries_.size(); in GetRecentAllocationSize()
275 return entries_.begin(); in Begin()
281 return entries_.end(); in End()
287 return entries_.rbegin(); in RBegin()
293 return entries_.rend(); in REnd()
305 EntryList entries_ GUARDED_BY(Locks::alloc_tracker_lock_);
Dallocation_record.cc59 for (auto it = entries_.rbegin(), end = entries_.rend(); it != end; ++it) { in VisitRoots()
96 const size_t delete_bound = std::max(entries_.size(), recent_record_max_) - recent_record_max_; in SweepAllocationRecords()
97 for (auto it = entries_.begin(), end = entries_.end(); it != end;) { in SweepAllocationRecords()
109 it = entries_.erase(it); in SweepAllocationRecords()
250 entries_.clear(); in Clear()
/art/libdexfile/dex/
Dtype_lookup_table.h50 entries_(nullptr), in TypeLookupTable()
62 return entries_ != nullptr; in Valid()
78 return reinterpret_cast<const uint8_t*>(entries_); in RawData()
174 const Entry* entries_; variable
Dtype_lookup_table.cc105 const Entry* entry = &entries_[pos]; in Lookup()
116 entry = &entries_[pos]; in Lookup()
136 entry = &entries_[pos]; in Lookup()
165 entries_(entries), in TypeLookupTable()
Ddex_file_structs.h260 uint32_t entries_[1]; member
Ddex_file.h628 return GetAnnotationItemAtOffset(set_item->entries_[index]); in GetAnnotationItem()
Ddex_file_verifier.cc2944 const uint32_t* offsets = set->entries_; in CheckInterAnnotationSetItem()
/art/runtime/
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/libelffile/dwarf/
Ddebug_info_entry_writer.h204 : Writer<Vector>(&entries_),
206 entries_(alloc),
217 Vector entries_; variable
/art/compiler/jit/
Djit_logger.cc188 PerfJitDebugEntry entries_[0]; // Followed by entry_count_ instances of PerfJitDebugEntry. member