Home
last modified time | relevance | path

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

1234

/art/test/569-checker-pattern-replacement/src/
DMain.java647 Derived d = new Derived(); in constructDerived() local
672 Derived d = new Derived(intValue); in constructDerived() local
689 Derived d = new Derived(0); in constructDerivedWith0() local
708 Derived d = new Derived(stringValue); in constructDerived() local
733 Derived d = new Derived(doubleValue); in constructDerived() local
750 Derived d = new Derived(0.0); in constructDerivedWith0d() local
777 Derived d = new Derived(intValue, doubleValue, objectValue); in constructDerived() local
801 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived() local
828 Derived d = new Derived(floatValue); in constructDerived() local
863 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/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/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/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/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/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/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/655-checker-simd-arm-opt/src/
DMain.java51 … void encodableConstants(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] d) { in encodableConstants()
75 …vate static int sumArray(byte[] b, short[] s, char[] c, int[] a, long[] l, float[] f, double[] d) { in sumArray()
92 double[] d = new double[ARRAY_SIZE]; in main() local
/art/runtime/mirror/
Darray-inl.h275 static inline void ArrayBackwardCopy(T* d, const T* s, int32_t count) { in ArrayBackwardCopy()
288 static inline void ArrayForwardCopy(T* d, const T* s, int32_t count) { in ArrayForwardCopy()
323 uint8_t* d = reinterpret_cast<uint8_t*>(dst_raw); in Memmove() local
329 uint16_t* d = reinterpret_cast<uint16_t*>(dst_raw); in Memmove() local
337 uint32_t* d = reinterpret_cast<uint32_t*>(dst_raw); in Memmove() local
346 uint64_t* d = reinterpret_cast<uint64_t*>(dst_raw); in Memmove() local
382 uint16_t* d = reinterpret_cast<uint16_t*>(dst_raw); in Memcpy() local
386 uint32_t* d = reinterpret_cast<uint32_t*>(dst_raw); in Memcpy() local
391 uint64_t* d = reinterpret_cast<uint64_t*>(dst_raw); in Memcpy() local
/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/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/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/631-checker-fp-abs/src/
DMain.java44 private static double $opt$noinline$absDP(double d) { in $opt$noinline$absDP()
126 double d = Double.longBitsToDouble(dpnans[i]); in main() local
/art/compiler/optimizing/
Dinduction_var_analysis_test.cc51 void BuildForLoop(int d, int n) { in BuildForLoop()
108 for (int d = 0; d < n; d++) { in BuildLoopNest() local
125 HPhi* BuildIf(int d, HBasicBlock** ifT, HBasicBlock** ifF) { in BuildIf()
148 HInstruction* InsertInstruction(HInstruction* instruction, int d) { in InsertInstruction()
154 HPhi* InsertLoopPhi(int vreg, int d) { in InsertLoopPhi()
162 HInstruction* InsertArrayStore(HInstruction* subscript, int d) { in InsertArrayStore()
170 std::string GetInductionInfo(HInstruction* instruction, int d) { in GetInductionInfo()
176 std::string GetTripCount(int d) { in GetTripCount()
243 for (int d = 0; d < 1; d++) { in TEST_F() local
1051 for (int d = 0; d < 10; d++) { in TEST_F() local
[all …]
/art/test/017-float/src/
DMain.java23 double d = 3.1415926535; in float_017() local
/art/test/440-stmp/src/
DMain.java27 public static void baz(float a, float b, float c, float d, float e, float f, float g, in baz()
35 float d = 4.0f; field in Main
/art/test/100-reflect2/src/
DMain.java24 private static double d = Math.PI; field in Main
269 …private static void ZBCDFIJSV(boolean z, byte b, char c, double d, float f, int i, long l, short s… in ZBCDFIJSV()
273 …private static void ZBCDLFIJSV(boolean z, byte b, char c, double d, String string, float f, int i,… in ZBCDLFIJSV()
/art/test/704-multiply-accumulate/src/
DMain.java42 int d = c; in test_int() local
103 long d = c; in test_long() local
/art/test/108-check-cast/src/
DMain.java33 D d = (D) b; in main() local

1234