/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 | 122 uintptr_t w = bitmap_begin_[i].LoadRelaxed(); in VisitMarkedRange() local 123 if (w != 0) { in VisitMarkedRange() 127 const size_t shift = CTZ(w); in VisitMarkedRange() 130 w ^= (static_cast<uintptr_t>(1)) << shift; in VisitMarkedRange() 131 } while (w != 0); in VisitMarkedRange() 171 uintptr_t w = bitmap_begin[i].LoadRelaxed(); in Walk() local 172 if (w != 0) { in Walk() 175 const size_t shift = CTZ(w); in Walk() 178 w ^= (static_cast<uintptr_t>(1)) << shift; in Walk() 179 } 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_int_to_double.S | 7 cvt.d.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
|
/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/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/924-threads/src/art/ |
D | Test924.java | 112 final NativeWaiter w = new NativeWaiter(); in doStateTests() local 141 nativeLoop(w.struct); in doStateTests() 200 w.waitForNative(); in doStateTests() 202 w.finish(); in doStateTests() 461 private static native void nativeLoop(long w); in nativeLoop() argument
|
/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/test/712-varhandle-invocations/src/ |
D | VarHandleTypeConversionTests.java | 1088 private Widget w = INITIAL_VALUE; field in VarHandleTypeConversionTests.SubtypeTest 1133 assertEquals(WidgetChild.ONE, this.w); in doTest() 1137 assertEquals(WidgetChild.TWO, w); in doTest() 1139 assertEquals(Widget.ONE, w); in doTest() 1142 assertEquals(Widget.TWO, w); in doTest() 1147 assertEquals(WidgetChild.ONE, w); in doTest() 1150 assertEquals(WidgetChild.TWO, w); in doTest() 1153 assertEquals(null, w); in doTest() 1155 assertEquals(WidgetChild.ONE, w); in doTest() 1222 private Widget w = null; field in VarHandleTypeConversionTests.SupertypeTest
|
/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/623-checker-loop-regressions/src/ |
D | Main.java | 103 int w = 10; in transferNarrowWrap() local 106 v = w + 1; // transfer on wrap-around in transferNarrowWrap() 107 w = x; // wrap-around in transferNarrowWrap()
|
/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 | 2512 void X86_64Assembler::rex(bool force, bool w, Register* r, Register* x, Register* b) { 2519 if (w) { 2539 void X86_64Assembler::rex_reg_mem(bool force, bool w, Register* dst, const Address& mem) { 2549 if (w) { 2561 void rex_mem_reg(bool force, bool w, Address* mem, Register* src); 3505 void X86_64Assembler::EmitOptionalRex(bool force, bool w, bool r, bool x, bool b) { in EmitOptionalRex() argument 3512 if (w) { in EmitOptionalRex()
|
/art/test/959-invoke-polymorphic-accessors/src/ |
D | Main.java | 760 long w = (long) h0.invoke(); in testStaticGetter() local 783 long w = (long) h0.invoke(valueHolder); in testMemberGetter() local
|
/art/tools/ |
D | art | 227 ANDROID_LOG_TAGS='*:w'
|
/art/runtime/ |
D | check_jni.cc | 145 jobjectRefType w; member 984 switch (arg.w) { in CheckNonHeapValue() 1157 switch (arg.w) { in TraceNonHeapValue() 1813 result.w = baseEnv(env)->GetObjectRefType(env, obj); in GetObjectRefType() 1815 return result.w; in GetObjectRefType()
|