Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 107) sorted by relevance

12345

/art/test/569-checker-pattern-replacement/src/
DMain.java688 Derived d = new Derived(); in constructDerived() local
713 Derived d = new Derived(intValue); in constructDerived() local
730 Derived d = new Derived(0); in constructDerivedWith0() local
749 Derived d = new Derived(stringValue); in constructDerived() local
774 Derived d = new Derived(doubleValue); in constructDerived() local
791 Derived d = new Derived(0.0); in constructDerivedWith0d() local
818 Derived d = new Derived(intValue, doubleValue, objectValue); in constructDerived() local
842 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived() local
869 Derived d = new Derived(floatValue); in constructDerived() local
904 Derived d = new Derived(intValue, doubleValue, objectValue, floatValue); in constructDerived() local
[all …]
/art/test/624-checker-stringops/src/
DMain.java74 int d = ABC.indexOf(c); in deadIndexOf() local
77 int d = ABC.indexOf(c, 4); in deadIndexOf() local
80 int d = ABC.indexOf(XYZ); in deadIndexOf() local
83 int d = ABC.indexOf(XYZ, 2); in deadIndexOf() local
252 int d = b.toString().indexOf(x, 1); in bufferDeadLoop() local
273 int d = b.toString().indexOf(x, 1); in builderDeadLoop() local
/art/runtime/mirror/
Darray-inl.h111 static inline void ArrayBackwardCopy(T* d, const T* s, int32_t count) { in ArrayBackwardCopy()
124 static inline void ArrayForwardCopy(T* d, const T* s, int32_t count) { in ArrayForwardCopy()
159 uint8_t* d = reinterpret_cast<uint8_t*>(dst_raw); in Memmove() local
165 uint16_t* d = reinterpret_cast<uint16_t*>(dst_raw); in Memmove() local
173 uint32_t* d = reinterpret_cast<uint32_t*>(dst_raw); in Memmove() local
182 uint64_t* d = reinterpret_cast<uint64_t*>(dst_raw); in Memmove() local
218 uint16_t* d = reinterpret_cast<uint16_t*>(dst_raw); in Memcpy() local
222 uint32_t* d = reinterpret_cast<uint32_t*>(dst_raw); in Memcpy() local
227 uint64_t* d = reinterpret_cast<uint64_t*>(dst_raw); in Memcpy() local
/art/test/123-inline-execute2/src/
DMain.java22 double d = i * (Math.PI / 180.0); in main() local
80 double d = i * (StrictMath.PI / 180.0); in main() local
/art/test/2265-checker-select-binary-unary/src/
DMain.java53 int d = 2; in $noinline$testIntToLong() local
76 int d = 2; in $noinline$testIntToFloat() local
99 int d = 258; // equal to 2 in byte in $noinline$testIntToByte() local
124 long d = (1L << 32) + 2L; // Will be 2, when cast to int in $noinline$testLongToInt() local
/art/test/003-omnibus-opcodes/src/
DUnresTest1.java29 double d = stuff.wideInstField; in run() local
55 double d = UnresStuff.wideStaticField; in run() local
DFloatMath.java26 double d; in convTest() local
237 static int[] convI(long l, float f, double d, float zero) { in convI()
257 static long[] convL(int i, float f, double d, double zero) { in convL()
277 static float[] convF(int i, long l, double d) { in convF()
311 double d = 10.0; // const-wide/special in checkConsts() local
/art/test/105-invoke/src/
DMain.java31 int virI_IIII(int a, int b, int c, int d) { in virI_IIII()
35 int virI_IIIII(int a, int b, int c, int d, int e) { in virI_IIIII()
39 int virI_IIIIII(int a, int b, int c, int d, int e, int f) { in virI_IIIIII()
55 static int statI_IIII(int a, int b, int c, int d) { in statI_IIII()
59 static int statI_IIIII(int a, int b, int c, int d, int e) { in statI_IIIII()
63 static int statI_IIIIII(int a, int b, int c, int d, int e, int f) { in statI_IIIIII()
/art/test/StaticLeafMethods/
DStaticLeafMethods.java32 static int sum(int a, int b, int c, int d) { in sum()
35 static int sum(int a, int b, int c, int d, int e) { in sum()
47 static double sum(double a, double b, double c, double d) { in sum()
50 static double sum(double a, double b, double c, double d, double e) { in sum()
/art/test/NonStaticLeafMethods/
DNonStaticLeafMethods.java34 int sum(int a, int b, int c, int d) { in sum()
37 int sum(int a, int b, int c, int d, int e) { in sum()
49 double sum(double a, double b, double c, double d) { in sum()
52 double sum(double a, double b, double c, double d, double e) { in sum()
/art/test/404-optimizing-allocator/src/
DMain.java70 int d = 0; in $opt$reg$TestFourLive() local
84 int d = 0; in $opt$reg$TestMultipleLive() local
117 int d = 0; in $opt$reg$testSpillInIf() local
129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1()
150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
/art/test/405-optimizing-long-allocator/src/
DMain.java76 long d = 0; in $opt$TestFourLive() local
90 long d = 0; in $opt$TestMultipleLive() local
123 long d = 0; in $opt$testSpillInIf() local
135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1()
156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
/art/runtime/entrypoints/
Dmath_entrypoints.cc35 extern "C" int64_t art_d2l(double d) { in art_d2l()
43 extern "C" int32_t art_d2i(double d) { in art_d2i()
/art/test/821-many-args/src/
DMain.java40 int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) { in staticMethod()
54 public int instanceMethod(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) { in instanceMethod()
69 public static int staticMethodNonRange(int a, int b, int c, int d, int e) { in staticMethodNonRange()
78 public int instanceMethodNonRange(int a, int b, int c, int d) { in instanceMethodNonRange()
/art/test/655-checker-simd-arm-opt/src/
DMain.java68 … void encodableConstants(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] d) { in encodableConstants()
128 …vate static int sumArray(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] d) { in sumArray()
145 double[] d = new double[ARRAY_SIZE]; in checkEncodableConstants() local
/art/test/474-fp-sub-neg/src/
DMain.java38 double d = 0; in doubleTest() local
58 float d; in bug_1() local
/art/test/439-swap-double/src/
DMain.java35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles()
42 double d = 4.0; field in Main
/art/test/2266-checker-remove-empty-ifs/src/
DMain.java59 public static void andBoolean4(boolean a, boolean b, boolean c, boolean d) { in andBoolean4()
104 public static void orBoolean4(boolean a, boolean b, boolean c, boolean d) { in orBoolean4()
121 public static void andInt(int a, int b, int c, int d) { in andInt()
/art/test/952-invoke-custom/src/
DTestDynamicBootstrapArguments.java65 private static int testDynamic(int i, String s, Double d) { in testDynamic()
70 private static int targetA100000000(int i, String s, Double d) { in targetA100000000()
DTestLinkerMethodWithRange.java66 private static int add(int a, int b, int c, int d, int e, int f) { in add()
72 private static int _add(int a, int b, int c, int d, int e, int f) { in _add()
131 private static Double multiply(Double a, Double b, Double c, Double d, Double e, Double f) { in multiply()
137 private static Double _multiply(Double a, Double b, Double c, Double d, Double e, Double f) { in _multiply()
/art/test/027-arithmetic/src/
DMain.java56 long d = 0x44; in shiftTest2() local
71 double d; in convTest() local
/art/test/401-optimizing-compiler/src/
DMain.java146 static int $opt$TestInvokeWith5Parameters(int a, int b, int c, int d, int e) { in $opt$TestInvokeWith5Parameters()
150 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters()
194 public static void printStaticMethodWith5Args(int a, int b, int c, int d, int e) { in printStaticMethodWith5Args()
199 public static void printStaticMethodWith7Args(int a, int b, int c, int d, int e, int f, int g) { in printStaticMethodWith7Args()
/art/test/484-checker-register-hints/src/
DMain.java43 public static void test1(boolean z, int a, int b, int c, int d, int m) { in test1()
78 public static void test2(boolean z, int a, int b, int c, int d, int m) { in test2()
101 public static void test3(boolean z, int a, int b, int c, int d, int m) { in test3()
/art/test/567-checker-builder-intrinsics/src/
DTestFpAbs.java42 private static double $opt$noinline$absDP(double d) { in $opt$noinline$absDP()
124 double d = Double.longBitsToDouble(dpnans[i]); in main() local
/art/test/017-float/src/
DMain.java23 double d = 3.1415926535; in float_017() local

12345