Searched defs:table_ (Results 1 - 6 of 6) sorted by relevance

/art/compiler/
H A Dgc_map_builder.h39 table_ = table->data();
70 native_offset |= table_[table_offset + i] << (i * 8);
78 table_[table_offset + i] = (native_offset >> (i * 8)) & 0xFF;
84 memcpy(&table_[table_offset + native_offset_width_], references, references_width_);
100 uint8_t* table_; member in class:art::GcMapBuilder
/art/runtime/
H A Dvmap_table.h32 explicit VmapTable(const uint8_t* table) : table_(table) {
37 const uint8_t* table = table_;
48 const uint8_t* table = table_;
64 const uint8_t* table = table_;
101 const uint8_t* table = table_;
121 const uint8_t* const table_; member in class:art::VmapTable
H A Dmapping_table.h69 table_(table), element_(element), end_(table_->DexToPcSize()), encoded_table_ptr_(nullptr),
73 encoded_table_ptr_ = table_->FirstDexToPcPtr();
79 DCHECK_EQ(table_->DexToPcSize(), element);
97 CHECK(table_ == rhs.table_);
101 CHECK(table_ == rhs.table_);
106 const MappingTable* const table_; // The original table. member in class:art::MappingTable::DexToPcIterator
108 const uint32_t end_; // Equal to table_
183 const MappingTable* const table_; // The original table. member in class:art::MappingTable::PcToDexIterator
[all...]
H A Dindirect_reference_table.h232 : table_(table), i_(i), capacity_(capacity) {
242 return table_[i_].GetReference();
246 return (i_ == rhs.i_ && table_ == rhs.table_);
250 IrtEntry* const table_; member in class:art::IrtIterator
332 return IrtIterator(table_, 0, Capacity());
336 return IrtIterator(table_, Capacity(), Capacity());
370 uint32_t serialChunk = table_[tableIndex].GetSerial();
389 IrtEntry* table_; member in class:art::IndirectReferenceTable
H A Ddebugger.cc4997 table_.insert(str);
5001 table_.insert(str);
5005 auto it = table_.find(s);
5006 if (it == table_.end()) {
5009 return std::distance(table_.begin(), it);
5013 return table_.size();
5017 for (const std::string& str : table_) {
5027 std::set<std::string> table_; member in class:art::StringTable
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc262 explicit PreloadDexCachesStringsVisitor(StringTable* table) : table_(table) { }
267 table_->operator[](string->ToModifiedUtf8()) = string;
271 StringTable* const table_; member in class:art::PreloadDexCachesStringsVisitor

Completed in 181 milliseconds