Home
last modified time | relevance | path

Searched refs:a (Results 201 – 225 of 1121) sorted by relevance

12345678910>>...45

/art/libartbase/base/
Dmacros.h67 #define APPEND_TOKENS_AFTER_EVAL_2(a, b) a ## b argument
68 #define APPEND_TOKENS_AFTER_EVAL(a, b) APPEND_TOKENS_AFTER_EVAL_2(a, b) argument
/art/test/2011-stack-walk-concurrent-instrument/
Dinfo.txt1 Tests concurrently instrumenting a thread while walking a stack doesn't crash/break.
/art/test/1921-suspend-native-recursive-monitor/
Dinfo.txt1 Tests JVMTI suspending of a thread that is interacting with a raw monitor
/art/test/2036-jni-filechannel/
Dinfo.txt1 Test that GetDirectBufferCapacity works correctly for a mapped buffer
2 from a zero length file.
/art/test/303-verification-stress/
Dinfo.txt1 This is more a benchmark for the verifier than a real test. We create many
2 classes, each one initializing a big array of string in its class initializer.
/art/test/1985-structural-redefine-stack-scope/src/
DMain.java58 public static void assertEquals(Object a, Object b) { in assertEquals() argument
59 if (a != b) { in assertEquals()
60 throw new Error("Expected " + b + ", got " + a); in assertEquals()
/art/test/460-multiple-returns3/
Dinfo.txt1 Tests inlining of a pattern not generated by DX: multiple
2 returns in a single method.
/art/test/452-multiple-returns2/
Dinfo.txt1 Tests inlining of a pattern not generated by DX: multiple
2 returns in a single method.
/art/test/448-multiple-returns/
Dinfo.txt1 Tests inlining of a pattern not generated by DX: multiple
2 returns in a single method.
/art/test/1940-ddms-ext/src-art/art/
DTest1940.java47 private static void checkEq(Object a, Object b) { in checkEq() argument
48 if (!a.equals(b)) { in checkEq()
49 throw new TestError("Failure: " + a + " != " + b); in checkEq()
53 private static boolean chunkEq(Chunk a, Chunk b) { in chunkEq() argument
54 return a.type == b.type && in chunkEq()
55 a.offset == b.offset && in chunkEq()
56 a.length == b.length && in chunkEq()
57 Arrays.equals(a.data, b.data); in chunkEq()
75 Adler32 a = new Adler32(); in handleChunk() local
76 a.update(req.data, req.offset, req.length); in handleChunk()
[all …]
/art/test/152-dead-large-object/src/
DMain.java18 static volatile Object a[] = null; field in Main
22 a = new Object[i * 300000]; in main()
/art/test/584-checker-div-bool/src/
DMain.java31 public static int foo(int a) { in foo() argument
32 return a / bar(); in foo()
/art/test/434-invoke-direct/
Dinfo.txt1 Tests that IllegalAccessError is thrown when a subclass invokes-direct a
/art/test/656-loop-deopt/src/
DMain.java51 int a = 0; in $noinline$intUpdate() local
58 a++; in $noinline$intUpdate()
61 myIntStatic = a; in $noinline$intUpdate()
63 a = 1; in $noinline$intUpdate()
/art/test/953-invoke-polymorphic-compiler/src/
DMain.java82 public static int Min2Print2(int a, int b) { in Min2Print2() argument
83 int[] values = new int[] { a, b }; in Min2Print2()
85 return a > b ? a : b; in Min2Print2()
88 public static int Min2Print3(int a, int b, int c) { in Min2Print3() argument
89 int[] values = new int[] { a, b, c }; in Min2Print3()
91 return a > b ? a : b; in Min2Print3()
94 public static int Min2Print6(int a, int b, int c, int d, int e, int f) { in Min2Print6() argument
95 int[] values = new int[] { a, b, c, d, e, f }; in Min2Print6()
97 return a > b ? a : b; in Min2Print6()
100 public static int Min2Print26(int a, int b, int c, int d, in Min2Print26() argument
[all …]
/art/test/612-jit-dex-cache/src-ex/
DLoadedByAppClassLoader.java18 public static void letMeInlineYou(A a) { in letMeInlineYou() argument
19 a.foo(); in letMeInlineYou()
/art/test/434-shifter-operand/src/
DMain.java24 public static boolean foo(int a) { in foo() argument
25 return a < 0xf000000b; in foo()
/art/test/619-checker-current-method/src/
DMain.java24 public static int foo(int a, int b, int c, int d, int e, int f) { in foo() argument
25 return a + b + c + d + e + f; in foo()
/art/test/475-regression-inliner-ids/
Dinfo.txt1 Tests a regression when inlining a method with constants would lead to duplicate
/art/test/535-regression-const-val/
Dinfo.txt1 Test a regression where SsaChecker would fail comparing raw value of IntConstant
2 vs FloatConstant due to a static_cast sign extend.
/art/test/489-current-method-regression/src/
DMain.java22 public static String foo(int a, int b) { in foo() argument
23 if (a == 42) { in foo()
/art/test/547-regression-trycatch-critic-edge/
Dinfo.txt1 Test a specific SSA building regression a back edge would not be split due to
/art/test/980-redefine-object/
Dexpected.txt3 Allocating a Transform before redefining Object class
4 Redefining the Object class to add a hook into the <init> method
7 Allocating a Transform after redefining Object class
12 Adding a bunch of stuff to the array list
16 Allocating a linked list
18 Adding a bunch of stuff to the linked list
/art/test/519-bound-load-class/
Dinfo.txt2 used to crash when a `HCheckCast` did not have a `HLoadClass`
/art/test/451-regression-add-float/
Dinfo.txt1 Tests a regression in float addition for optimizing. The second argument
2 could be now be a constant for floating point numbers.

12345678910>>...45