HomeSort by relevance Sort by last modified time
    Searched defs:TableSlot (Results 1 - 3 of 3) sorted by null

  /art/runtime/
class_table-inl.h 31 for (TableSlot& table_slot : class_set) {
49 for (TableSlot& table_slot : class_set) {
67 for (TableSlot& table_slot : class_set) {
80 for (TableSlot& table_slot : class_set) {
90 inline mirror::Class* ClassTable::TableSlot::Read() const {
104 inline void ClassTable::TableSlot::VisitRoot(const Visitor& visitor) const {
117 inline ObjPtr<mirror::Class> ClassTable::TableSlot::ExtractPtr(uint32_t data) {
121 inline uint32_t ClassTable::TableSlot::Encode(ObjPtr<mirror::Class> klass, uint32_t hash_bits) {
126 inline ClassTable::TableSlot::TableSlot(ObjPtr<mirror::Class> klass, uint32_t descriptor_hash
    [all...]
class_table.h 44 class TableSlot {
46 TableSlot() : data_(0u) {}
48 TableSlot(const TableSlot& copy) : data_(copy.data_.LoadRelaxed()) {}
50 explicit TableSlot(ObjPtr<mirror::Class> klass);
52 TableSlot(ObjPtr<mirror::Class> klass, uint32_t descriptor_hash);
54 TableSlot& operator=(const TableSlot& copy) {
103 uint32_t operator()(const TableSlot& slot) const NO_THREAD_SAFETY_ANALYSIS;
105 bool operator()(const TableSlot& a, const TableSlot& b) cons
    [all...]
class_table.cc 38 TableSlot slot(klass);
50 TableSlot slot(klass);
87 *existing_it = TableSlot(klass, hash);
96 for (const TableSlot& root : set) {
145 TableSlot slot(klass);
158 const uint32_t hash = TableSlot::HashDescriptor(klass);
160 classes_.back().InsertWithHash(TableSlot(klass, hash), hash);
170 for (const TableSlot& slot : class_set) {
177 const uint32_t hash = TableSlot::HashDescriptor(klass);
178 classes_.back().InsertWithHash(TableSlot(klass, hash), hash)
    [all...]

Completed in 320 milliseconds