Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 110) sorted by relevance

12345

/art/test/431-optimizing-arith-shifts/src/
DMain.java239 static int $opt$Shl(int a, int b) { in $opt$Shl()
243 static long $opt$Shl(long a, long b) { in $opt$Shl()
247 static int $opt$Shr(int a, int b) { in $opt$Shr()
251 static long $opt$Shr(long a, long b) { in $opt$Shr()
255 static int $opt$UShr(int a, int b) { in $opt$UShr()
259 static long $opt$UShr(long a, long b) { in $opt$UShr()
263 static int $opt$ShlConst2(int a) { in $opt$ShlConst2()
267 static long $opt$ShlConst2(long a) { in $opt$ShlConst2()
271 static int $opt$ShrConst2(int a) { in $opt$ShrConst2()
275 static long $opt$ShrConst2(long a) { in $opt$ShrConst2()
[all …]
/art/test/427-bitwise/src/
DMain.java86 static int $opt$And(int a, int b) { in $opt$And()
90 static int $opt$AndLit8(int a) { in $opt$AndLit8()
94 static int $opt$AndLit16(int a) { in $opt$AndLit16()
98 static long $opt$And(long a, long b) { in $opt$And()
102 static long $opt$AndLit8(long a) { in $opt$AndLit8()
106 static long $opt$AndLit16(long a) { in $opt$AndLit16()
148 static int $opt$Or(int a, int b) { in $opt$Or()
152 static int $opt$OrLit8(int a) { in $opt$OrLit8()
156 static int $opt$OrLit16(int a) { in $opt$OrLit16()
160 static long $opt$Or(long a, long b) { in $opt$Or()
[all …]
/art/test/422-type-conversion/src/
DMain.java630 static long $opt$ByteToLong(byte a) { return (long)a; } in $opt$ByteToLong()
631 static long $opt$ShortToLong(short a) { return (long)a; } in $opt$ShortToLong()
632 static long $opt$IntToLong(int a) { return (long)a; } in $opt$IntToLong()
633 static long $opt$CharToLong(int a) { return (long)a; } in $opt$CharToLong()
636 static float $opt$ByteToFloat(byte a) { return (float)a; } in $opt$ByteToFloat()
637 static float $opt$ShortToFloat(short a) { return (float)a; } in $opt$ShortToFloat()
638 static float $opt$IntToFloat(int a) { return (float)a; } in $opt$IntToFloat()
639 static float $opt$CharToFloat(char a) { return (float)a; } in $opt$CharToFloat()
642 static double $opt$ByteToDouble(byte a) { return (double)a; } in $opt$ByteToDouble()
643 static double $opt$ShortToDouble(short a) { return (double)a; } in $opt$ShortToDouble()
[all …]
/art/test/432-optimizing-cmp/src/
DMain.java105 static boolean $opt$lt(long a, long b) { in $opt$lt()
109 static boolean $opt$lt(float a, float b) { in $opt$lt()
113 static boolean $opt$lt(double a, double b) { in $opt$lt()
117 static boolean $opt$gt(long a, long b) { in $opt$gt()
121 static boolean $opt$gt(float a, float b) { in $opt$gt()
125 static boolean $opt$gt(double a, double b) { in $opt$gt()
131 private static int smaliCmpLong(long a, long b) throws Exception { in smaliCmpLong()
138 private static int smaliCmpGtFloat(float a, float b) throws Exception { in smaliCmpGtFloat()
145 private static int smaliCmpLtFloat(float a, float b) throws Exception { in smaliCmpLtFloat()
152 private static int smaliCmpGtDouble(double a, double b) throws Exception { in smaliCmpGtDouble()
[all …]
/art/test/410-floats/src/
DMain.java20 float[] a = new float[2]; in main() local
57 public static float returnFloat(float[] a) { in returnFloat()
65 public static double returnDouble(double[] a) { in returnDouble()
69 public static float takeAFloat(float a) { in takeAFloat()
73 public static double takeADouble(double a) { in takeADouble()
77 public static double takeThreeDouble(double a, double b, double c) { in takeThreeDouble()
81 public static float takeThreeFloat(float a, float b, float c) { in takeThreeFloat()
85 public static float invokeTakeAFloat(float a) { in invokeTakeAFloat()
89 public static double invokeTakeADouble(double a) { in invokeTakeADouble()
93 public static double invokeTakeThreeDouble(double a, double b, double c) { in invokeTakeThreeDouble()
[all …]
/art/test/451-regression-add-float/src/
DMain.java27 public static int add3(int a) { in add3()
31 public static long add3(long a) { in add3()
35 public static float add3(float a) { in add3()
39 public static double add3(double a) { in add3()
43 public static void assertEqual(int a, int b) { in assertEqual()
49 public static void assertEqual(long a, long b) { in assertEqual()
55 public static void assertEqual(float a, float b) { in assertEqual()
64 public static void assertEqual(double a, double b) { in assertEqual()
/art/test/436-rem-float/src/
DMain.java218 static float $opt$Rem(float a, float b) { in $opt$Rem()
222 static float $opt$RemConst(float a) { in $opt$RemConst()
226 static double $opt$Rem(double a, double b) { in $opt$Rem()
230 static double $opt$RemConst(double a) { in $opt$RemConst()
234 public static void expectApproxEquals(float a, float b) { in expectApproxEquals()
243 public static void expectApproxEquals(double a, double b) { in expectApproxEquals()
252 public static void expectNaN(float a) { in expectNaN()
258 public static void expectNaN(double a) { in expectNaN()
/art/runtime/entrypoints/quick/
Dquick_math_entrypoints.cc26 int CmplFloat(float a, float b) { in CmplFloat()
37 int CmpgFloat(float a, float b) { in CmpgFloat()
48 int CmpgDouble(double a, double b) { in CmpgDouble()
59 int CmplDouble(double a, double b) { in CmplDouble()
74 extern "C" int64_t artLmul(int64_t a, int64_t b) { in artLmul()
78 extern "C" int64_t artLdiv(int64_t a, int64_t b) { in artLdiv()
82 extern "C" int64_t artLmod(int64_t a, int64_t b) { in artLmod()
/art/test/417-optimizing-arith-div/src/
DMain.java45 public static void expectApproxEquals(float a, float b) { in expectApproxEquals()
54 public static void expectApproxEquals(double a, double b) { in expectApproxEquals()
63 public static void expectNaN(float a) { in expectNaN()
69 public static void expectNaN(double a) { in expectNaN()
222 static int $opt$Div(int a, int b) { in $opt$Div()
226 static int $opt$DivZero(int a) { in $opt$DivZero()
231 static int $opt$DivConst(int a) { in $opt$DivConst()
235 static long $opt$DivConst(long a) { in $opt$DivConst()
239 static long $opt$Div(long a, long b) { in $opt$Div()
243 static long $opt$DivZero(long a) { in $opt$DivZero()
[all …]
/art/test/105-invoke/src/
DMain.java19 int virI_I(int a) { in virI_I()
23 int virI_II(int a, int b) { in virI_II()
27 int virI_III(int a, int b, int c) { in virI_III()
31 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()
43 static int statI_I(int a) { in statI_I()
47 static int statI_II(int a, int b) { in statI_II()
51 static int statI_III(int a, int b, int c) { in statI_III()
55 static int statI_IIII(int a, int b, int c, int d) { in statI_IIII()
[all …]
/art/test/402-optimizing-control-flow/src/
DMain.java48 static int $opt$testIfEq1(int a) { in $opt$testIfEq1()
56 static int $opt$testIfEq2(int a) { in $opt$testIfEq2()
64 static int $opt$testWhileLoop(int a) { in $opt$testWhileLoop()
69 static int $opt$testDoWhileLoop(int a) { in $opt$testDoWhileLoop()
75 static int $opt$testForLoop(int a) { in $opt$testForLoop()
80 static int $opt$testIfWithLocal(int a) { in $opt$testIfWithLocal()
/art/test/514-shifts/src/
DMain.java28 int a = myField; in testIntShiftLeft() local
39 int a = myField; in testIntShiftRight() local
50 int a = myField; in testIntUnsignedShiftRight() local
61 long a = myLongField; in testLongShiftLeft() local
74 long a = myLongField; in testLongShiftRight() local
87 long a = myLongField; in testLongUnsignedShiftRight() local
/art/test/414-optimizing-arith-sub/src/
DMain.java45 public static void expectApproxEquals(float a, float b) { in expectApproxEquals()
53 public static void expectApproxEquals(double a, double b) { in expectApproxEquals()
61 public static void expectNaN(float a) { in expectNaN()
67 public static void expectNaN(double a) { in expectNaN()
154 static int $opt$Sub(int a, int b) { in $opt$Sub()
158 static long $opt$Sub(long a, long b) { in $opt$Sub()
162 static float $opt$Sub(float a, float b) { in $opt$Sub()
166 static double $opt$Sub(double a, double b) { in $opt$Sub()
/art/test/StaticLeafMethods/
DStaticLeafMethods.java26 static int sum(int a, int b) { in sum()
29 static int sum(int a, int b, int c) { in sum()
32 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()
41 static double sum(double a, double b) { in sum()
44 static double sum(double a, double b, double c) { 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.java28 int sum(int a, int b) { in sum()
31 int sum(int a, int b, int c) { in sum()
34 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()
43 double sum(double a, double b) { in sum()
46 double sum(double a, double b, double c) { 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/411-optimizing-arith/src/
DMain.java45 public static void expectApproxEquals(float a, float b, float maxDelta) { in expectApproxEquals()
54 public static void expectApproxEquals(double a, double b, double maxDelta) { in expectApproxEquals()
63 public static void expectNaN(float a) { in expectNaN()
69 public static void expectNaN(double a) { in expectNaN()
166 static int $opt$Mul(int a, int b) { in $opt$Mul()
170 static long $opt$Mul(long a, long b) { in $opt$Mul()
174 static float $opt$Mul(float a, float b) { in $opt$Mul()
178 static double $opt$Mul(double a, double b) { in $opt$Mul()
/art/test/477-checker-bound-type/src/
DMain.java22 public static Object boundTypeForIf(Object a) { in boundTypeForIf()
32 public static Object boundTypeForInstanceOf(Object a) { in boundTypeForInstanceOf()
42 public static Object noBoundTypeForIf(Object a) { in noBoundTypeForIf()
52 public static Object noBoundTypeForInstanceOf(Object a) { in noBoundTypeForInstanceOf()
/art/test/428-optimizing-arith-rem/src/
DMain.java94 static int $opt$Rem(int a, int b) { in $opt$Rem()
98 static int $opt$RemZero(int a) { in $opt$RemZero()
103 static int $opt$RemConst(int a) { in $opt$RemConst()
107 static long $opt$RemConst(long a) { in $opt$RemConst()
111 static long $opt$Rem(long a, long b) { in $opt$Rem()
115 static long $opt$RemZero(long a) { in $opt$RemZero()
/art/test/441-checker-inliner/src/
DMain.java41 public static int InlineParameter(int a) { in InlineParameter()
54 public static long InlineWideParameter(long a) { in InlineWideParameter()
165 private static void returnVoidWithOneParameter(int a) { in returnVoidWithOneParameter()
169 private static int returnParameter(int a) { in returnParameter()
173 private static long returnWideParameter(long a) { in returnWideParameter()
189 private static int returnAdd(int a, int b) { in returnAdd()
193 private static int returnSub(int a, int b) { in returnSub()
/art/test/403-optimizing-long/src/
DMain.java88 static long $opt$TakeOneLong2(int a, long l) { in $opt$TakeOneLong2()
92 static long $opt$TakeOneLong3(int a, int b, long l) { in $opt$TakeOneLong3()
96 static long $opt$TakeOneLong4(int a, int b, int c, long l) { in $opt$TakeOneLong4()
100 static long $opt$TakeOneLong5(int a, int b, int c,int d, long l) { in $opt$TakeOneLong5()
104 static long $opt$AddTwoLongs(long a, long b) { in $opt$AddTwoLongs()
108 static long $opt$AddThreeLongs(long a, long b, long c) { in $opt$AddThreeLongs()
112 static long $opt$SubTwoLongs(long a, long b) { in $opt$SubTwoLongs()
/art/test/404-optimizing-allocator/src/
DMain.java35 int a = 0; in $opt$reg$TestLostCopy() local
45 int a = 0; in $opt$reg$TestTwoLive() local
55 int a = 0; in $opt$reg$TestThreeLive() local
67 int a = 0; in $opt$reg$TestFourLive() local
81 int a = 0; in $opt$reg$TestMultipleLive() local
101 int a = 0; in $opt$reg$TestWithBreakAndContinue() local
116 public static int $opt$reg$testSpillInIf(int a, int b, int c) { in $opt$reg$testSpillInIf()
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.java41 long a = 0; in $opt$TestLostCopy() local
51 long a = 0; in $opt$TestTwoLive() local
61 long a = 0; in $opt$TestThreeLive() local
73 long a = 0; in $opt$TestFourLive() local
87 long a = 0; in $opt$TestMultipleLive() local
107 long a = 0; in $opt$TestWithBreakAndContinue() local
122 public static long $opt$testSpillInIf(long a, long b, long c) { in $opt$testSpillInIf()
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/437-inline/src/
DMain.java68 public static int $opt$inline$returnParameter(int a) { in $opt$inline$returnParameter()
72 public static int $opt$inline$returnAdd(int a, int b) { in $opt$inline$returnAdd()
76 public static int $opt$inline$returnSub(int a, int b) { in $opt$inline$returnSub()
84 public static long $opt$inline$returnWideParameter(long a) { in $opt$inline$returnWideParameter()
100 public static void $opt$inline$returnVoidWithOneParameter(int a) { in $opt$inline$returnVoidWithOneParameter()
/art/test/401-optimizing-compiler/src/
DMain.java40 Object a = new Object(); in main() local
133 static Object $opt$TestInvokeObjectParameter(Object a) { in $opt$TestInvokeObjectParameter()
138 static int $opt$TestInvokeWith2Parameters(int a, int b) { in $opt$TestInvokeWith2Parameters()
142 static int $opt$TestInvokeWith3Parameters(int a, int b, int c) { in $opt$TestInvokeWith3Parameters()
146 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()
190 public static void printStaticMethodWith2Args(int a, int b) { in printStaticMethodWith2Args()
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()
204 public static void printStaticMethodWithObjectArg(Object a) { in printStaticMethodWithObjectArg()
/art/runtime/interpreter/
Dsafe_math.h34 static inline typename select_bigger<T1, T2>::type SafeMath(T1 a, T2 b) { in SafeMath()
46 static inline typename select_bigger<T1, T2>::type SafeAdd(T1 a, T2 b) { in SafeAdd()
52 static inline typename select_bigger<T1, T2>::type SafeSub(T1 a, T2 b) { in SafeSub()
58 static inline typename select_bigger<T1, T2>::type SafeMul(T1 a, T2 b) { in SafeMul()

12345