Searched defs:ref_offsets (Results 1 - 2 of 2) sorted by relevance

/art/runtime/gc/collector/
H A Dmark_sweep-inl.h115 inline void MarkSweep::VisitFieldsReferences(const mirror::Object* obj, uint32_t ref_offsets, argument
117 if (LIKELY(ref_offsets != CLASS_WALK_SUPER)) {
122 ref_offsets &= (1U << (sizeof(ref_offsets) * 8 - 1)) - 1;
124 while (ref_offsets != 0) {
125 size_t right_shift = CLZ(ref_offsets);
129 ref_offsets &= ~(CLASS_HIGH_BIT >> right_shift);
/art/compiler/
H A Dimage_writer.cc605 uint32_t ref_offsets,
607 if (ref_offsets != CLASS_WALK_SUPER) {
609 while (ref_offsets != 0) {
610 size_t right_shift = CLZ(ref_offsets);
615 ref_offsets &= ~(CLASS_HIGH_BIT >> right_shift);
603 FixupFields(const Object* orig, Object* copy, uint32_t ref_offsets, bool is_static) argument

Completed in 81 milliseconds