Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 70) sorted by relevance

123

/art/test/444-checker-nce/src/
DMain.java27 return m.g(); in keepTest()
34 return g(); in thisTest()
46 return m.g(); in newInstanceRemoveTest()
74 return m.g(); in ifRemoveTest()
89 return m.g(); in ifKeepTest()
105 return m.g(); in forRemoveTest()
123 return m.g(); in forKeepTest()
145 return n.g(); in phiFlowRemoveTest()
169 return n.g(); in phiFlowKeepTest()
179 m.g(); in scopeRemoveTest()
[all …]
/art/test/439-swap-double/src/
DMain.java28 callWithDoubles(a, b, c, d, e, f, g); in foo()
29 callWithDoubles(b, c, d, e, f, g, a); in foo()
30 callWithDoubles(c, d, e, f, g, a, b); in foo()
31 callWithDoubles(d, e, f, g, a, b, c); in foo()
35 double a, double b, double c, double d, double e, double f, double g) { in callWithDoubles() argument
36 System.out.println(a - b - c - d - e - f - g); in callWithDoubles()
45 double g = 7.0; field in Main
/art/test/450-checker-types/src/
DMain.java52 void $noinline$g() { in $noinline$g()
65 void $noinline$g() { in $noinline$g()
90 ((SubclassA)s).$noinline$g(); in testSimpleRemove()
134 ((SubclassA)s).$noinline$g(); in testIfRemove()
149 ((SubclassA)s).$noinline$g(); in testIfKeep()
164 ((SubclassA)s).$noinline$g(); in testForRemove()
179 ((SubclassC)s).$noinline$g(); in testForKeep()
194 ((SubclassC)x).$noinline$g(); in testPhiFromCall()
206 ((SubclassC)o).$noinline$g(); in testInstanceOf()
209 ((SubclassB)o).$noinline$g(); in testInstanceOf()
[all …]
/art/test/529-long-split/src/
DMain.java37 int g = myField3; // ESI (by spilling ESI-EDI, see below) in testOddLow1() local
43 myField4 = g; // use if EDI in testOddLow1()
69 myField4 = g; in testOddLow1()
79 int g = myField3; // ESI (by spilling ESI-EDI, see below) in testNonFollowingHigh() local
85 myField4 = g; // use of ESI in testNonFollowingHigh()
109 myField4 = g; in testNonFollowingHigh()
119 int g = myField3; // ECX in testOddLow2() local
126 myField5 = g; // use of ECX in testOddLow2()
/art/test/484-checker-register-hints/src/
DMain.java46 int g = live3; in test1() local
55 foo.field4 = g + i + h; in test1()
59 live1 = e + f + g + j; in test1()
81 int g = live3; in test2() local
89 foo.field4 = g + i + h; in test2()
94 live1 = e + f + g + j; in test2()
106 int g = live3; in test3() local
118 foo.field4 = g + i + h; in test3()
123 live1 = e + f + g + j; in test3()
/art/test/012-math/src/
DMain.java76 double f, g, fres; in math_012() local
79 g = 7.0f; in math_012()
81 fres = f + g; in math_012()
83 fres = f - g; in math_012()
85 fres = f * g; in math_012()
87 fres = f / g; in math_012()
89 fres = f % g; in math_012()
91 f += g; in math_012()
93 f -= g; in math_012()
95 f *= g; in math_012()
[all …]
/art/libdexfile/dex/
Dbase64_test_util.h59 int g = 3; in DecodeBase64() local
67 if (--g < 0) { in DecodeBase64()
71 } else if (g != 3) { in DecodeBase64()
79 if (g > 1) { in DecodeBase64()
82 if (g > 2) { in DecodeBase64()
/art/test/405-optimizing-long-allocator/src/
DMain.java93 long g = 0; in $opt$TestMultipleLive() local
101 g += 2; in $opt$TestMultipleLive()
135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() argument
139 long k = 42 + g - a; in $opt$TestAgressiveLive1()
153 return a - b - c - d - e - f - g - h - i - j - k; 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() argument
160 long k = 42 + g - a; in $opt$TestAgressiveLive2()
164 return a - b - c - d - e - f - g - h - i - j - k; in $opt$TestAgressiveLive2()
/art/test/454-get-vreg/src/
DMain.java23 int g = doNativeCall(); in testSimpleVReg() local
24 return e + g; in testSimpleVReg()
29 long g = doNativeCall(); in testPairVReg() local
30 return f + g; in testPairVReg()
/art/test/404-optimizing-allocator/src/
DMain.java87 int g = 0; in $opt$reg$TestMultipleLive() local
95 g += 2; in $opt$reg$TestMultipleLive()
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() argument
133 int k = 42 + g - a; in $opt$reg$TestAgressiveLive1()
147 return a - b - c - d - e - f - g - h - i - j - k; 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() argument
154 int k = 42 + g - a; in $opt$reg$TestAgressiveLive2()
158 return a - b - c - d - e - f - g - h - i - j - k; in $opt$reg$TestAgressiveLive2()
/art/test/ExceptionHandle/
DExceptionHandle.java22 g(1); in f()
29 g(2); in f()
35 void g(int doThrow) throws Exception { in g() method in ExceptionHandle
/art/test/440-stmp/src/
DMain.java24 baz(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o); in bar()
27 public static void baz(float a, float b, float c, float d, float e, float f, float g, in baz() argument
29 System.out.println(a - b - c - d - e - f - g - h - i - j - k - l - m - n - o); in baz()
38 float g = 7.0f; field in Main
/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() argument
44 assertEquals(7, g); 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() argument
58 assertEquals(7, g); in instanceMethod()
/art/test/451-spill-splot/src/
DMain.java28 double g = 6.0; in main() local
50 System.out.println(a + b + c + d + e + f + g + h + i + j); in main()
57 g = $noinline$computeDouble(); in main()
61 System.out.println(a + b + c + d + e + f + g + h + i + j); in main()
/art/test/957-methodhandle-transforms/
Dexpected-stdout.txt36 a: a, b:1, c: 2, d: 3, e: 4, f:5, g: 6.0, h: 7.0
37 a: a, b:1, c: 2, d: 3, e: 4, f:5, g: 6.0, h: 7.0
38 a: a, b:1, c: 2, d: 51, e: 52, f:53.0, g: 54.0
39 a: a, b:1, c: 2, d: 51, e: 52, f:53.0, g: 54.0
40 a: a, b:1, c: 2, d: 3, e: 4, f:5.0, g:6.0
41 a: a, b:1, c: 2, d: 3, e: 4, f:5.0, g:6.0
/art/test/2011-stack-walk-concurrent-instrument/src/
DMain.java24 $noinline$g(r); in $noinline$f()
27 void $noinline$g(Runnable r) { in $noinline$g()
/art/test/004-StackWalk/src/
DMain.java28 $noinline$g(1); in $noinline$f()
29 $noinline$g(2); in $noinline$f()
33 void $noinline$g(int num_calls) { in $noinline$g()
/art/test/401-optimizing-compiler/src/
DMain.java150 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters() argument
151 return a - b - c - d - e - f - g; in $opt$TestInvokeWith7Parameters()
199 public static void printStaticMethodWith7Args(int a, int b, int c, int d, int e, int f, int g) { in printStaticMethodWith7Args() argument
201 + a + " " + b + " " + c + " " + d + " " + e + " " + f + " " + g); in printStaticMethodWith7Args()
/art/test/606-erroneous-class/smali/
DErrClass.smali18 .field public g:Ljava/lang/Object;
24 iput-object v0, p0, LErrClass;->g:Ljava/lang/Object;
/art/test/070-nio-buffer/
Dinfo.txt1 Exercise NIO buffers (e.g. java.nio.ByteBuffer).
/art/test/565-checker-condition-liveness/
Dinfo.txt1 Test the results of liveness analysis e.g. use positions of inputs of non-materialized conditions.
/art/test/642-fp-callees/
Dfp_callees.cc38 double g = array[6]; in Java_Main_holdFpTemporaries() local
59 CHECK_EQ(bit_cast<int64_t>(g), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries()
/art/tools/dmtracedump/
DAndroid.bp34 "-g",
52 "-g",
/art/test/708-jit-cache-churn/
Dinfo.txt1 …rmission updates and CPU cache inconsistencies. Only runs when test runner permits JIT, e.g. --jit.
/art/test/412-new-array/src/
DMain.java54 byte[] g = new byte[7]; in $opt$TestAllocations()
55 assertEquals(7, g.length); in $opt$TestAllocations()
96 byte[] g = {7, 8, 9}; in $opt$TestWithInitializations()
97 assertEquals(3, g.length); in $opt$TestWithInitializations()
98 assertEquals(7, g[0]); in $opt$TestWithInitializations()
99 assertEquals(8, g[1]); in $opt$TestWithInitializations()
100 assertEquals(9, g[2]); in $opt$TestWithInitializations()

123