Home
last modified time | relevance | path

Searched refs:w (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/accounting/
Dspace_bitmap.cc110 word w = bitmap_begin[i]; in Walk() local
111 if (w != 0) { in Walk()
114 const size_t shift = CLZ(w); in Walk()
117 w ^= static_cast<size_t>(kWordHighBitMask) >> shift; in Walk()
118 } while (w != 0); in Walk()
255 word w = bitmap_begin_[i]; in InOrderWalk() local
256 if (UNLIKELY(w != 0)) { in InOrderWalk()
258 while (w != 0) { in InOrderWalk()
259 const size_t shift = CLZ(w); in InOrderWalk()
262 w ^= static_cast<size_t>(kWordHighBitMask) >> shift; in InOrderWalk()
Dspace_bitmap-inl.h89 size_t w = bitmap_begin_[i]; in VisitMarkedRange() local
90 if (w != 0) { in VisitMarkedRange()
93 const size_t shift = CLZ(w); in VisitMarkedRange()
96 w ^= static_cast<size_t>(kWordHighBitMask) >> shift; in VisitMarkedRange()
97 } while (w != 0); in VisitMarkedRange()
/art/runtime/
Ddisassembler_arm.cc226 bool w = (instruction & (1 << 21)) != 0; in DumpArm() local
234 bool wback = !p || w; in DumpArm()
243 LOG(FATAL) << p << " " << w; in DumpArm()
256 bool w = (instruction & (1 << 21)) != 0; in DumpArm() local
259 args << ArmRegister(instruction, 16) << (w ? "!" : "") << ", " << RegisterList(instruction); in DumpArm()