Home
last modified time | relevance | path

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

/art/test/133-static-invoke-super/src/
DMain.java4 protected static int getVar(int w) { in getVar() argument
5 return w & 0xF; in getVar()
9 final int getVarDirect(int w) { in getVarDirect() argument
10 return w & 0xF; in getVarDirect()
/art/runtime/gc/accounting/
Dspace_bitmap.cc111 uword w = bitmap_begin[i]; in Walk() local
112 if (w != 0) { in Walk()
115 const size_t shift = CTZ(w); in Walk()
118 w ^= (static_cast<uword>(1)) << shift; in Walk()
119 } while (w != 0); in Walk()
255 uword 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 = CTZ(w); in InOrderWalk()
262 w ^= (static_cast<uword>(1)) << shift; in InOrderWalk()
Dspace_bitmap-inl.h119 uword w = bitmap_begin_[i]; in VisitMarkedRange() local
120 if (w != 0) { in VisitMarkedRange()
123 const size_t shift = CTZ(w); in VisitMarkedRange()
126 w ^= (static_cast<uword>(1)) << shift; in VisitMarkedRange()
127 } while (w != 0); in VisitMarkedRange()
/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc5 " 6: f04f 0809 mov.w r8, #9\n",
9 " 0: ea4f 0001 mov.w r0, r1\n",
10 " 4: ea4f 0809 mov.w r8, r9\n",
24 " 8: ea01 0002 and.w r0, r1, r2\n",
25 " c: ea41 0002 orr.w r0, r1, r2\n",
26 " 10: ea81 0002 eor.w r0, r1, r2\n",
27 " 14: ea21 0002 bic.w r0, r1, r2\n",
28 " 18: eb41 0002 adc.w r0, r1, r2\n",
29 " 1c: eb61 0002 sbc.w r0, r1, r2\n",
46 " 44: eb01 0c00 add.w ip, r1, r0\n",
[all …]
/art/disassembler/
Ddisassembler_arm.cc307 bool w = (instruction & (1 << 21)) != 0; in DumpArm() local
315 bool wback = !p || w; in DumpArm()
324 LOG(FATAL) << p << " " << w; in DumpArm()
337 bool w = (instruction & (1 << 21)) != 0; in DumpArm() local
340 args << ArmRegister(instruction, 16) << (w ? "!" : "") << ", " << RegisterList(instruction); in DumpArm()
1494 bool w = (instr & (1 << 8)) != 0; in DumpThumb32() local
1496 if (p && u && !w) { in DumpThumb32()
1501 } else if (Rn.r == 13 && !p && u && w && (instr & 0xff) == 4) { in DumpThumb32()
1506 bool wback = !p || w; in DumpThumb32()
1517 LOG(FATAL) << p << " " << w; in DumpThumb32()
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc1023 void X86_64Assembler::rex(bool force, bool w, Register* r, Register* x, Register* b) {
1030 if (w) {
1050 void X86_64Assembler::rex_reg_mem(bool force, bool w, Register* dst, const Address& mem) {
1060 if (w) {
1072 void rex_mem_reg(bool force, bool w, Address* mem, Register* src);
1614 void X86_64Assembler::EmitOptionalRex(bool force, bool w, bool r, bool x, bool b) { in EmitOptionalRex() argument
1621 if (w) { in EmitOptionalRex()
Dassembler_x86_64.h637 void EmitOptionalRex(bool force, bool w, bool r, bool x, bool b);
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc251 #define BIT_MASK(w) ((UINT64_C(1) << (w)) - UINT64_C(1)) argument
/art/compiler/dex/quick/x86/
Dassemble_x86.cc887 bool w = (entry->skeleton.prefix1 == REX_W) || (entry->skeleton.prefix2 == REX_W); in EmitPrefix() local
903 if (w) { in EmitPrefix()
/art/test/083-compiler-regressions/src/
DMain.java844 int w = 1; in constantPropagationTest() local
853 w = (int)(2 * (f * 6)); in constantPropagationTest()
857 if (w == 0 && h == 1 && g[0] == 0) { in constantPropagationTest()