Searched refs:read_count (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | intern_table-inl.h | 93 size_t read_count = 0; in AddTableFromMemory() local 94 UnorderedSet set(ptr, /*make copy*/false, &read_count); in AddTableFromMemory() 105 return read_count; in AddTableFromMemory()
|
D | class_table.cc | 172 size_t read_count = 0; in ReadFromMemory() local 173 AddClassSet(ClassSet(ptr, /*make copy*/false, &read_count)); in ReadFromMemory() 174 return read_count; in ReadFromMemory()
|
D | class_linker.cc | 1517 size_t read_count; in VerifyInternedStringReferences() local 1519 InternTable::UnorderedSet image_set(data, /*make_copy_of_data=*/ false, &read_count); in VerifyInternedStringReferences() 2030 size_t read_count = 0; in AddImageSpace() local 2033 &read_count); in AddImageSpace()
|
/art/runtime/gc/space/ |
D | image_space_test.cc | 157 size_t read_count; in TEST_F() local 158 InternTable::UnorderedSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in TEST_F()
|
D | image_space.cc | 1236 size_t read_count = 0u; in RelocateInPlace() local 1240 ClassTable::ClassSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in RelocateInPlace() 2598 size_t read_count; in DoRelocateSpaces() local 2599 InternTable::UnorderedSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in DoRelocateSpaces() 2610 size_t read_count; in DoRelocateSpaces() local 2611 ClassTable::ClassSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in DoRelocateSpaces()
|
/art/libartbase/base/ |
D | hash_set.h | 307 HashSet(const uint8_t* ptr, bool make_copy_of_data, size_t* read_count) noexcept { in HashSet() argument 332 *read_count = offset; in HashSet()
|