Home
last modified time | relevance | path

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

/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/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/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/StackWalk2/
DStackWalk2.java23 g(1); // use v0 for 1, v1 for this in f()
24 g(2); // use v0 for 2, v1 for this in f()
29 void g(int num_calls) throws RuntimeException { in g() method in StackWalk2
/art/runtime/
Ddex_file_verifier_test.cc61 int g = 3; in DecodeBase64() local
69 if (--g < 0) { in DecodeBase64()
73 } else if (g != 3) { in DecodeBase64()
81 if (g > 1) { in DecodeBase64()
84 if (g > 2) { in DecodeBase64()
Ddex_file_test.cc66 int g = 3; in DecodeBase64() local
74 if (--g < 0) { in DecodeBase64()
78 } else if (g != 3) { in DecodeBase64()
86 if (g > 1) { in DecodeBase64()
89 if (g > 2) { in DecodeBase64()
Delf_file.cc755 unsigned h = 0, g; in elfhash() local
759 g = h & 0xf0000000; in elfhash()
760 h ^= g; in elfhash()
761 h ^= g >> 24; in elfhash()
/art/test/004-StackWalk/src/
DMain.java6 g(1); in f()
7 g(2); in f()
11 void g(int num_calls) { in g() method in Main
/art/test/401-optimizing-compiler/src/
DMain.java132 static int $opt$TestInvokeWith7Parameters(int a, int b, int c, int d, int e, int f, int g) { in $opt$TestInvokeWith7Parameters() argument
133 return a - b - c - d - e - f - g; in $opt$TestInvokeWith7Parameters()
181 public static void printStaticMethodWith7Args(int a, int b, int c, int d, int e, int f, int g) { in printStaticMethodWith7Args() argument
183 + a + " " + b + " " + c + " " + d + " " + e + " " + f + " " + g); in printStaticMethodWith7Args()
/art/test/070-nio-buffer/
Dinfo.txt1 Exercise NIO buffers (e.g. java.nio.ByteBuffer).
/art/test/027-arithmetic/src/
DMain.java59 long g = 0x77; in shiftTest2() local
63 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/runtime/arch/x86/
Dthread_x86.cc34 unsigned limit: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8; member
74 entry.g = limit_in_pages; in InitCpu()
/art/test/068-classloader/
Dinfo.txt1 Class loaders allow code to "redefine" a given class, e.g. it's possible to
/art/test/700-LoadArgRegs/
Dexpected.txt27 a, b, c, d, e, f, g
/art/test/067-preemptive-unpark/src/
DMain.java72 int g = 0; in clearStack() local
/art/test/etc/
Dhost-run-test-jar195 …dalvik-cache/$ISA/$(echo $DEX_LOCATION/$TEST_NAME.jar/classes.dex | cut -d/ -f 2- | sed "s:/:@:g")"
Dpush-and-run-prebuilt-test-jar205 …(echo $DEX_LOCATION/$TEST_NAME.jar/classes.dex | cut -d/ -f 2- | sed "s:/:@:g") --instruction-set=…
/art/test/003-omnibus-opcodes/src/
DIntMath.java60 long g = 0x77; in shiftTest2() local
64 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/compiler/
Delf_writer_quick.cc717 unsigned h = 0, g; in elfhash() local
721 g = h & 0xf0000000; in elfhash()
722 h ^= g; in elfhash()
723 h ^= g >> 24; in elfhash()
/art/test/107-int-math2/src/
DMain.java248 long g = 0x77; in shiftTest2() local
252 (e << 24) | (f << 16) | (g << 8) | h); in shiftTest2()
/art/compiler/llvm/
Dintrinsic_func_list.def368 // necessary checking on arguments (e.g., array and index) has already done
/art/test/083-compiler-regressions/src/
DMain.java843 int g[] = new int[1]; in constantPropagationTest() local
857 if (w == 0 && h == 1 && g[0] == 0) { in constantPropagationTest()