/art/compiler/utils/ |
D | assembler_thumb_test_expected.cc.inc | 11 " 18: f5ad 5d80 sub.w sp, sp, #4096 ; 0x1000\n", 16 " 24: f8dd 0400 ldr.w r0, [sp, #1024] ; 0x400\n", 17 " 28: f8dd cffc ldr.w ip, [sp, #4092] ; 0xffc\n", 18 " 2c: f50d 5c80 add.w ip, sp, #4096 ; 0x1000\n", 19 " 30: f8dc c000 ldr.w ip, [ip]\n", 20 " 34: f8d9 c200 ldr.w ip, [r9, #512] ; 0x200\n", 21 " 38: f8dc 0080 ldr.w r0, [ip, #128] ; 0x80\n", 26 " 44: f8cd 0400 str.w r0, [sp, #1024] ; 0x400\n", 27 " 48: f8cd cffc str.w ip, [sp, #4092] ; 0xffc\n", 28 " 4c: f84d 5d04 str.w r5, [sp, #-4]!\n", [all …]
|
/art/test/916-obsolete-jit/src/ |
D | Main.java | 125 public static void doTest(Transform t, TestWatcher w) { in doTest() argument 148 w.accept("transforming calling function"); in doTest() 153 Runnable say_nothing = () -> { w.accept("Not doing anything here"); }; in doTest() 158 w.clear(); in doTest() 160 t.sayHi(say_nothing, w); in doTest() 161 t.sayHi(do_redefinition, w); in doTest() 162 t.sayHi(say_nothing, w); in doTest() 165 System.out.print(w.getOutput()); in doTest()
|
/art/test/919-obsolete-fields/src/art/ |
D | Test919.java | 153 TestWatcher w = new TestWatcher(); in run() local 154 doTest(new Transform(w), w); in run() 157 public static void doTest(Transform t, TestWatcher w) { in doTest() argument 159 w.accept("transforming calling function"); in doTest() 163 Runnable say_nothing = () -> { w.accept("Not doing anything here"); }; in doTest() 171 System.out.print(w.getOutput()); in doTest()
|
/art/test/133-static-invoke-super/src/ |
D | Main.java | 4 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/ |
D | space_bitmap-inl.h | 120 uintptr_t w = bitmap_begin_[i].LoadRelaxed(); in VisitMarkedRange() local 121 if (w != 0) { in VisitMarkedRange() 124 const size_t shift = CTZ(w); in VisitMarkedRange() 127 w ^= (static_cast<uintptr_t>(1)) << shift; in VisitMarkedRange() 128 } while (w != 0); in VisitMarkedRange() 166 uintptr_t w = bitmap_begin[i].LoadRelaxed(); in Walk() local 167 if (w != 0) { in Walk() 170 const size_t shift = CTZ(w); in Walk() 173 w ^= (static_cast<uintptr_t>(1)) << shift; in Walk() 174 } while (w != 0); in Walk()
|
D | bitmap-inl.h | 97 uintptr_t w = bitmap_begin_[i]; in VisitSetBits() local 98 if (w != 0) { in VisitSetBits() 101 const size_t shift = CTZ(w); in VisitSetBits() 103 w ^= static_cast<uintptr_t>(1) << shift; in VisitSetBits() 104 } while (w != 0); in VisitSetBits()
|
/art/runtime/interpreter/mterp/mips64/ |
D | op_int_to_float.S | 7 cvt.s.w f0, f0
|
D | op_double_to_int.S | 2 trunc.w.d f0, f0
|
D | op_float_to_int.S | 2 trunc.w.s f0, f0
|
D | op_int_to_double.S | 7 cvt.d.w f0, f0
|
/art/test/530-checker-loops1/src/ |
D | Main.java | 166 int w = x.length - 1; in wrapAroundThenLinear() local 169 result += x[w]; in wrapAroundThenLinear() 170 w = i; in wrapAroundThenLinear() 183 int w = x.length - 1; in wrapAroundThenLinearThreeWayPhi() local 186 if (x[w] == 1) { in wrapAroundThenLinearThreeWayPhi() 187 w = i++; in wrapAroundThenLinearThreeWayPhi() 190 result += x[w]; in wrapAroundThenLinearThreeWayPhi() 191 w = i++; in wrapAroundThenLinearThreeWayPhi()
|
/art/test/988-method-trace/src/art/ |
D | Test988.java | 70 StringWriter w = new StringWriter(); in genericToString() local 72 w.write(thr.getClass().getName() + ": " + thr.getMessage() + "\n"); in genericToString() 75 w.write("\t" + e + "\n"); in genericToString() 77 w.write("\t<additional hidden frames>\n"); in genericToString() 81 return w.toString(); in genericToString()
|
/art/test/990-field-trace/src/art/ |
D | Test990.java | 89 StringWriter w = new StringWriter(); in genericToString() local 90 ((Throwable) val).printStackTrace(new PrintWriter(w)); in genericToString() 91 return w.toString(); in genericToString()
|
/art/runtime/interpreter/mterp/mips/ |
D | op_float_to_int.S | 28 trunc.w.s fa0, fa0
|
D | op_double_to_int.S | 30 trunc.w.d fa0, fa0
|
/art/test/623-checker-loop-regressions/src/ |
D | Main.java | 101 int w = 10; in transferNarrowWrap() local 104 v = w + 1; // transfer on wrap-around in transferNarrowWrap() 105 w = x; // wrap-around in transferNarrowWrap()
|
/art/test/530-checker-loops2/src/ |
D | Main.java | 655 int w = 9; in wrapAroundDynamicBCE() local 658 result += x[w]; in wrapAroundDynamicBCE() 659 w = i; in wrapAroundDynamicBCE() 854 long[] w, in dynamicBCEAndConstantIndicesAllPrimTypes() argument 861 (int) w[0] + (int) x[0] + (int) y[0]; in dynamicBCEAndConstantIndicesAllPrimTypes()
|
/art/test/800-smali/smali/ |
D | sameFieldNames.smali | 46 .field static public w:I
|
/art/test/953-invoke-polymorphic-compiler/src/ |
D | Main.java | 105 int u, int v, int w, int x, in Min2Print26() argument 108 n, o, p, q, r, s, t, u, v, w, x, y, z }; in Min2Print26()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 2338 void X86_64Assembler::rex(bool force, bool w, Register* r, Register* x, Register* b) { 2345 if (w) { 2365 void X86_64Assembler::rex_reg_mem(bool force, bool w, Register* dst, const Address& mem) { 2375 if (w) { 2387 void rex_mem_reg(bool force, bool w, Address* mem, Register* src); 3318 void X86_64Assembler::EmitOptionalRex(bool force, bool w, bool r, bool x, bool b) { in EmitOptionalRex() argument 3325 if (w) { in EmitOptionalRex()
|
/art/test/959-invoke-polymorphic-accessors/src/ |
D | Main.java | 745 long w = (long)h0.invoke(); in testStaticGetter() local 768 long w = (long)h0.invoke(valueHolder); in testMemberGetter() local
|
/art/runtime/ |
D | check_jni.cc | 123 jobjectRefType w; member 916 switch (arg.w) { in CheckNonHeapValue() 1089 switch (arg.w) { in TraceNonHeapValue() 1692 result.w = baseEnv(env)->GetObjectRefType(env, obj); in GetObjectRefType() 1694 return result.w; in GetObjectRefType()
|
/art/test/956-methodhandles/src/ |
D | Main.java | 997 boolean w = (boolean) mh.invoke(false); in testPrimitiveReturnValueConversions() 998 if (w) fail(); in testPrimitiveReturnValueConversions()
|
/art/test/dexdump/ |
D | checkers.txt | 660 name : 'w' 980 … |0275: iput v4, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1261 … |0052: iput v0, v10, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1581 … |011b: iput v0, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1602 … |013c: iput v0, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1668 … |01b5: iput v0, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1749 … |023f: iput v0, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1773 … |026a: iget v3, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1776 … |026f: iput v3, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 1781 … |0276: iget v0, v9, Lcom/google/android/checkers/CheckersView;.w:I // field@0029 [all …]
|
/art/runtime/arch/arm64/ |
D | quick_entrypoints_arm64.S | 2667 .macro SELECT_X_OR_W_FOR_MACRO macro_to_use, x, w, xreg 2671 \macro_to_use \w
|