Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type_cache.cc49 entries_.push_back(UndefinedType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
50 entries_.push_back(ConflictType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
51 entries_.push_back(BooleanType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
52 entries_.push_back(ByteType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
53 entries_.push_back(ShortType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
54 entries_.push_back(CharType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
55 entries_.push_back(IntegerType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
56 entries_.push_back(LongLoType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
57 entries_.push_back(LongHiType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
58 entries_.push_back(FloatType::GetInstance()); in FillPrimitiveAndSmallConstantTypes()
[all …]
Dreg_type_cache-inl.h31 DCHECK_LT(id, entries_.size()); in GetFromId()
32 const RegType* result = entries_[id]; in GetFromId()
Dreg_type_cache.h78 return entries_.size(); in GetCacheSize()
176 std::vector<const RegType*> entries_; variable
/art/runtime/
Dreference_table.cc36 entries_.reserve(initial_size); in ReferenceTable()
45 if (entries_.size() >= max_size_) { in Add()
49 entries_.push_back(GcRoot<mirror::Object>(obj)); in Add()
54 for (int i = entries_.size() - 1; i >= 0; --i) { in Remove()
55 mirror::Object* entry = entries_[i].Read(); in Remove()
57 entries_.erase(entries_.begin() + i); in Remove()
110 return entries_.size(); in Size()
115 Dump(os, entries_); in Dump()
242 for (GcRoot<mirror::Object>& root : entries_) { in VisitRoots()
Dreference_table.h63 Table entries_; variable
Ddex_file.h367 uint32_t entries_[1]; member
Ddex_file_verifier.cc1840 const uint32_t* offsets = set->entries_; in CheckInterAnnotationSetItem()
/art/compiler/
Dgc_map_builder.h32 : entries_(entries), references_width_(entries != 0u ? references_width : 0u), in GcMapBuilder()
53 table_index = (table_index + 1) % entries_; in AddEntry()
63 return NativePcOffsetToReferenceMap::Hash(native_offset) % entries_; in TableIndex()
92 const size_t entries_; variable
/art/compiler/dwarf/
Ddebug_info_entry_writer.h184 : Writer<Allocator>(&entries_),
188 entries_(alloc),
243 std::vector<uint8_t, Allocator> entries_; variable