Home
last modified time | relevance | path

Searched refs:read_count (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dintern_table-inl.h93 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()
Dclass_table.cc172 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()
Dclass_linker.cc1517 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/
Dimage_space_test.cc157 size_t read_count; in TEST_F() local
158 InternTable::UnorderedSet temp_set(data, /*make_copy_of_data=*/ false, &read_count); in TEST_F()
Dimage_space.cc1236 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/
Dhash_set.h307 HashSet(const uint8_t* ptr, bool make_copy_of_data, size_t* read_count) noexcept { in HashSet() argument
332 *read_count = offset; in HashSet()