Home
last modified time | relevance | path

Searched refs:l1 (Results 1 – 25 of 26) sorted by relevance

12

/art/test/2000-virtual-list-structural/src/
DMain.java53 AbstractCollection<String> l1 = (AbstractCollection<String>)Arrays.asList("a", "b", "c", "d"); in main() local
62 AbstractCollection<String> l4 = new LinkedList<>(l1); in main()
63 PrintListAndData(l1); in main()
71 CheckLE(getcnt.invoke(l1), get_total_cnt.invoke()); in main()
75 CheckEQ(getcnt.invoke(l1), 0); in main()
77 CheckLE(getcnt.invoke(l1), getcnt.invoke(l2)); in main()
78 CheckLE(getcnt.invoke(l1), getcnt.invoke(l3)); in main()
79 CheckLE(getcnt.invoke(l1), getcnt.invoke(l4)); in main()
/art/compiler/optimizing/
Dload_store_analysis.cc32 static bool CanIntegerRangesOverlap(int64_t l1, int64_t h1, int64_t l2, int64_t h2) { in CanIntegerRangesOverlap() argument
33 return std::max(l1, l2) <= std::min(h1, h2); in CanIntegerRangesOverlap()
54 int64_t l1 = idx1->IsAdd() ? in CanBinaryOpAndIndexAlias() local
58 int64_t h1 = l1 + (vector_length1 - 1); in CanBinaryOpAndIndexAlias()
60 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanBinaryOpAndIndexAlias()
83 int64_t l1 = idx1->IsAdd() ? in CanBinaryOpsAlias() local
89 int64_t h1 = l1 + (vector_length1 - 1); in CanBinaryOpsAlias()
91 return CanIntegerRangesOverlap(l1, h1, l2, h2); in CanBinaryOpsAlias()
227 int64_t l1 = idx1->AsIntConstant()->GetValue(); in CanArrayElementsAlias() local
231 int64_t h1 = l1 + (vector_length1 - 1); in CanArrayElementsAlias()
[all …]
/art/test/952-invoke-custom/src/
DTestBase.java54 static void assertEquals(long l1, long l2) { in assertEquals() argument
55 if (l1 == l2) { in assertEquals()
58 throw new AssertionError("assertEquals l1: " + l1 + ", l2: " + l2); in assertEquals()
/art/test/646-checker-long-const-to-int/src/
DMain.java43 long l1 = longField1; in test() local
50 if (l0 != 0 || l1 != 0 || l2 != 0 || l3 != 0 || l4 != 0 || l5 != 0 || l6 != 0 || l7 != 0) { in test()
/art/benchmark/type-check/src/
DTypeCheckBenchmark.java21 Level1 l1 = (Level1) arr[i & 1023]; in timeCheckCastLevel1ToLevel1() local
28 Level1 l1 = (Level1) arr[i & 1023]; in timeCheckCastLevel2ToLevel1() local
35 Level1 l1 = (Level1) arr[i & 1023]; in timeCheckCastLevel3ToLevel1() local
42 Level1 l1 = (Level1) arr[i & 1023]; in timeCheckCastLevel9ToLevel1() local
/art/test/168-vmstack-annotated/src/
DMain.java115 LinkedList<Object> l1 = new LinkedList<>(); in testCluster1() local
125 l1.add(o1); in testCluster1()
126 l1.add(o3); in testCluster1()
127 l1.add(o2); in testCluster1()
141 Thread t1 = new Thread(new Runner(l1, b1)); in testCluster1()
/art/test/178-app-image-native-method/src/
DMain.java444 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
463 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
482 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
498 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
517 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
536 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
832 int i1, long l1, float f1, double d1, in nativeMethodWithManyParameters() argument
/art/test/178-app-image-native-method/
Dnative_methods.cc30 jint i1, jlong l1, jfloat f1, jdouble d1, in VerifyManyParameters() argument
39 (i1 == 11) && (l1 == 12) && (f1 == 13.0) && (d1 == 14.0) && in VerifyManyParameters()
59 jint i1, jlong l1, jfloat f1, jdouble d1, in Java_Test_nativeMethodWithManyParameters() argument
68 i1, l1, f1, d1, in Java_Test_nativeMethodWithManyParameters()
89 jint i1, jlong l1, jfloat f1, jdouble d1, in Java_TestFast_nativeMethodWithManyParameters() argument
98 i1, l1, f1, d1, in Java_TestFast_nativeMethodWithManyParameters()
118 jint i1, jlong l1, jfloat f1, jdouble d1, in Java_TestCritical_nativeMethodWithManyParameters() argument
127 i1, l1, f1, d1, in Java_TestCritical_nativeMethodWithManyParameters()
629 jint i1, jlong l1, jfloat f1, jdouble d1, in Java_CriticalClinitCheck_nativeMethodWithManyParameters() argument
638 i1, l1, f1, d1, in Java_CriticalClinitCheck_nativeMethodWithManyParameters()
/art/test/561-shared-slowpaths/src/
DMain.java27 private static void init(int[] x, int [] y, int l1, int h1, int l2, int h2) { in init() argument
28 for (int i = l1; i < h1; i++) { in init()
/art/test/697-checker-string-append/src/
DMain.java210 long l1, in $noinline$appendSLILC() argument
215 .append(l1) in $noinline$appendSLILC()
/art/test/578-bce-visit/src/
DMain.java32 int l1 = (((l0 >= ( ~mA[6][7][5])) && ((921 <= l0) && (mA[3][9][6] > l0))) ? mX : (l0--)); in doit() local
/art/test/1922-owned-monitors-info/src/art/
DTest1922.java179 final NamedLock l1 = new NamedLock("Lock 1"); in runTestsOtherThread() local
184 (r) -> { return new CallLockOther(t, l1, r); }, in runTestsOtherThread()
224 final NamedLock l1 = new NamedLock("Lock 1"); in runTestsCurrentThread() local
229 (r) -> { return new CallLockOther(t, l1, r); }, in runTestsCurrentThread()
/art/test/903-hello-tagging/src/art/
DTest903.java120 int l1 = objects == null ? 0 : objects.length; in printArraysSorted() local
122 int l = Math.max(l1, l2); in printArraysSorted()
/art/test/700-LoadArgRegs/src/
DMain.java277 …static void testRefs1(Object o1, Object o2, Object o3, Object o4, Object o5, long l1, long l2, lon… in testRefs1() argument
278 System.out.println(l1 + ", " + l2 + ", " + l3); in testRefs1()
281 …static void testRefs(Object o1, Object o2, Object o3, Object o4, Object o5, long l1, long l2, long… in testRefs() argument
282 testRefs1(o1, o2, o3, o4, o5, l1, l2, l3); in testRefs()
/art/test/439-npe/
Dexpected-stdout.txt72 l1=88
/art/test/439-npe/src/
DMain.java660 long l1 = 21L; in $opt$noinline$testRegisterRetrieval() local
740 l0 += l1; in $opt$noinline$testRegisterRetrieval()
741 l1 += l2; in $opt$noinline$testRegisterRetrieval()
807 System.out.println("l1=" + l1); in $opt$noinline$testRegisterRetrieval()
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc93 …jthread thread, jobject obj, jlong l1), (jvmti, jni, jthreadContainer{.thread = thread}, obj, jlon…
100 …bject obj, jclass klass, jlong l1), (jvmti, jni, jthreadContainer{.thread = thread}, obj, klass, j…
/art/test/421-large-frame/src/
DMain.java38 long l1 = 1L + value; in $opt$LargeFrame() local
537 l1 += l0; in $opt$LargeFrame()
538 l2 += l1; in $opt$LargeFrame()
/art/test/MyClassNatives/
DMyClassNatives.java86 native void checkParameterAlign(int i1, long l1); in checkParameterAlign() argument
214 native void checkParameterAlign_Fast(int i1, long l1); in checkParameterAlign_Fast() argument
/art/test/470-huge-method/src/
DMain.java33 long l1 = 1; in HugeMethod() local
1032 l1 += l0; in HugeMethod()
1033 l2 += l1; in HugeMethod()
/art/test/082-inline-execute/src/
DMain.java1364 private static long test_Long_reverse_b22324327(long l1, long l2) {
1379 long r1 = Long.reverse(l1);
/art/compiler/jni/
Djni_compiler_test.cc1667 jlong l1) { in JNI_TEST()
1669 EXPECT_EQ(l1, INT64_C(0x12345678ABCDEF0)); in JNI_TEST()
/art/test/083-compiler-regressions/src/
DMain.java1339 long l1 = 1; in largeFrame() local
3337 l1 = l0; in largeFrame()
3339 l2 = l1; in largeFrame()
/art/test/dexdump/
Dinvoke-custom.txt310 00278c: 1a02 d800 |000c: const-string v2, "assertEquals l1: " // strin…
326 0x0000 - 0x0024 reg=3 l1 J
Dall-dex-files.txt1905 0021cc: 1a00 e800 |0042: const-string v0, "l1" // string@00e8
3074 003064: 1a00 e800 |002e: const-string v0, "l1" // string@00e8
9127 00278c: 1a02 d800 |000c: const-string v2, "assertEquals l1: " // strin…
9143 0x0000 - 0x0024 reg=3 l1 J

12