Searched refs:references (Results 1 - 5 of 5) sorted by relevance

/art/compiler/
H A Dgc_map_builder.h48 void AddEntry(uint32_t native_offset, const uint8_t* references) { argument
56 SetReferences(table_index, references);
80 void SetReferences(size_t table_index, const uint8_t* references) { argument
82 memcpy(&(*table_)[table_offset + native_offset_width_], references, references_width_);
/art/runtime/gc/accounting/
H A Dmod_union_table.cc123 std::vector<mirror::HeapReference<Object>*>* references)
124 : mod_union_table_(mod_union_table), references_(references) {
147 std::vector<mirror::HeapReference<Object>*>* references)
149 references_(references) {
167 const std::set<const Object*>& references)
169 references_(references) {
201 const std::set<const Object*>& references)
203 : mod_union_table_(mod_union_table), references_(references) {
225 // Check the references of each clean card which is also in the mod union table.
250 os << "]\nModUnionTable references
122 AddToReferenceArrayVisitor(ModUnionTableReferenceCache* mod_union_table, std::vector<mirror::HeapReference<Object>*>* references) argument
146 ModUnionReferenceVisitor(ModUnionTableReferenceCache* const mod_union_table, std::vector<mirror::HeapReference<Object>*>* references) argument
166 CheckReferenceVisitor(ModUnionTableReferenceCache* mod_union_table, const std::set<const Object*>& references) argument
[all...]
/art/build/
H A DAndroid.cpplint.mk20 ART_CPPLINT_FILTER := --filter=-whitespace/line_length,-build/include,-readability/function,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_fn,-runtime/printf
/art/compiler/optimizing/
H A Dcode_generator.cc294 const uint8_t* references = dex_gc_map.FindBitMap(dex_pc, false); local
295 CHECK(references != NULL) << "Missing ref for dex pc 0x" << std::hex << dex_pc;
296 builder.AddEntry(native_offset, references);
/art/compiler/dex/quick/
H A Dcodegen_util.cc763 // Compute native offset to references size.
771 const uint8_t* references = dex_gc_map.FindBitMap(dex_pc, false); local
772 CHECK(references != NULL) << "Missing ref for dex pc 0x" << std::hex << dex_pc <<
774 native_gc_map_builder.AddEntry(native_offset, references);

Completed in 345 milliseconds