Home
last modified time | relevance | path

Searched refs:f2 (Results 1 – 22 of 22) sorted by relevance

/art/test/474-checker-boolean-input/src/
DMain.java35 public static boolean f2; field in Main
38 return (x == 42) ? f1 : f2; in InlinePhi()
98 f2 = false; in main()
/art/test/952-invoke-custom/src/
DTestBase.java61 static void assertEquals(float f1, float f2) { in assertEquals() argument
62 if (f1 == f2) { in assertEquals()
65 throw new AssertionError("assertEquals f1: " + f1 + ", f2: " + f2); in assertEquals()
/art/test/534-checker-bce-deoptimization/src/
DMain.java91 public static void $noinline$FloatFill(float f1, float f2, float[] array, int n) { in $noinline$FloatFill() argument
94 array[i] = ((i & 1) == 1) ? f1 : f2; in $noinline$FloatFill()
96 f2 += 2.25f; in $noinline$FloatFill()
/art/runtime/interpreter/mterp/mips64/
Dfloating_point.S88 cmp.eq.s f2, f0, f1
90 bc1nez f2, 1f # done if vBB == vCC (ordered)
92 cmp.lt.s f2, f0, f1
94 bc1nez f2, 1f # done if vBB < vCC (ordered)
97 cmp.lt.s f2, f1, f0
99 bc1nez f2, 1f # done if vBB > vCC (ordered)
121 cmp.eq.d f2, f0, f1
123 bc1nez f2, 1f # done if vBB == vCC (ordered)
125 cmp.lt.d f2, f0, f1
127 bc1nez f2, 1f # done if vBB < vCC (ordered)
[all …]
Dmain.S58 #define f2 $$f2 macro
/art/test/805-TooDeepClassInstanceOf/src/
DMain.java42 A f2 = new F2(); in main() local
58 expectFalse(f2 instanceof F1); in main()
/art/test/MyClassNatives/
DMyClassNatives.java79 native float checkFloats(float f1, float f2); in checkFloats() argument
82 float f1, float f2, float f3, float f4, float f5, float f6, in forceStackParameters() argument
128 int i8, int i9, int i10, float f1, float f2, float f3, float f4, float f5, float f6, in stackArgsIntsFirst() argument
132 native static void stackArgsFloatsFirst(float f1, float f2, float f3, float f4, float f5, in stackArgsFloatsFirst() argument
137 native static void stackArgsMixed(int i1, float f1, int i2, float f2, int i3, float f3, int i4, in stackArgsMixed() argument
213 native float checkFloats_Fast(float f1, float f2); in checkFloats_Fast() argument
216 float f1, float f2, float f3, float f4, float f5, float f6, in forceStackParameters_Fast() argument
262 int i8, int i9, int i10, float f1, float f2, float f3, float f4, float f5, float f6, in stackArgsIntsFirst_Fast() argument
266 native static void stackArgsFloatsFirst_Fast(float f1, float f2, float f3, float f4, float f5, in stackArgsFloatsFirst_Fast() argument
271 …native static void stackArgsMixed_Fast(int i1, float f1, int i2, float f2, int i3, float f3, int i… in stackArgsMixed_Fast() argument
[all …]
/art/test/703-floating-point-div/src/
DMain.java64 float f2 = -2.0f; in divFloatTest() local
75 expectEquals(Float.floatToRawIntBits(fPi/f2), 0xbfc90fdb); in divFloatTest()
/art/test/439-npe/
Dexpected.txt89 f2=172.0
/art/runtime/mirror/
Dobject_test.cc692 ArtField* f2 = c->FindInstanceField("count", "I"); in TEST_F() local
694 EXPECT_TRUE(f2 != nullptr); in TEST_F()
695 EXPECT_EQ(f1, f2); in TEST_F()
730 ArtField* f2 = mirror::Class::FindStaticField( in TEST_F() local
733 EXPECT_TRUE(f2 != nullptr); in TEST_F()
734 EXPECT_EQ(f1, f2); in TEST_F()
/art/compiler/jni/
Djni_compiler_test.cc1452 jfloat Java_MyClassNatives_checkFloats(JNIEnv*, jobject, jfloat f1, jfloat f2) { in JNI_TEST()
1453 return f1 - f2; // non-commutative operator in JNI_TEST()
1947 jint i10, jfloat f1, jfloat f2, jfloat f3, jfloat f4, in JNI_TEST_NORMAL_ONLY()
1963 jint i12 = bit_cast<jint, jfloat>(f2); in JNI_TEST_NORMAL_ONLY()
1999 jfloat f2 = bit_cast<jfloat, jint>(12); in StackArgsIntsFirstImpl() local
2009 env_->CallStaticVoidMethod(jklass_, jmethod_, i1, i2, i3, i4, i5, i6, i7, i8, i9, i10, f1, f2, in StackArgsIntsFirstImpl()
2015 void Java_MyClassNatives_stackArgsFloatsFirst(JNIEnv*, jclass, jfloat f1, jfloat f2, in JNI_TEST_CRITICAL()
2033 jint i12 = bit_cast<jint, jfloat>(f2); in JNI_TEST_CRITICAL()
2069 jfloat f2 = bit_cast<jfloat, jint>(12); in StackArgsFloatsFirstImpl() local
2079 env_->CallStaticVoidMethod(jklass_, jmethod_, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, i1, i2, i3, in StackArgsFloatsFirstImpl()
[all …]
/art/test/439-npe/src/
DMain.java677 float f2 = 42.0f; in $opt$noinline$testRegisterRetrieval() local
757 f1 += f2; in $opt$noinline$testRegisterRetrieval()
758 f2 += f3; in $opt$noinline$testRegisterRetrieval()
824 System.out.println("f2=" + f2); in $opt$noinline$testRegisterRetrieval()
/art/compiler/utils/
Dassembler_test_base.h363 bool CompareFiles(const std::string& f1, const std::string& f2) { in CompareFiles() argument
365 std::ifstream f2_in(f2); in CompareFiles()
/art/test/806-TooWideClassInstanceOf/src/
DMain.java1244 A f2 = new F3(); in main() local
1248 expectFalse(f2 instanceof E1199); in main()
1249 expectTrue(f2 instanceof E1200); in main()
/art/test/dexdump/
Dcheckers.txt327 0017f2: 7210 2e00 0600 |0003: invoke-interface {v6}, Landroid/view/MenuItem…
1310 0022a0: 1a00 f200 |00ac: const-string v0, "lwk" // string@00f2
1330 0022f2: 6e20 7000 0a00 |00d5: invoke-virtual {v10, v0}, Lcom/google/android…
1403 0023d2: 12f2 |0001: const/4 v2, #int -1 // #ff
1559 0025dc: 2900 45ff |00f2: goto/16 0037 // -00bb
1565 0025f2: 5990 2300 |00fd: iput v0, v9, Lcom/google/android/checkers/Che…
1711 0027f2: 3800 0f00 |01fd: if-eqz v0, 020c // +000f
1785 0028f2: 0160 |027d: move v0, v6
1874 0029f2: d802 0402 |0061: add-int/lit8 v2, v4, #int 2 // #02
2122 002cee: 3371 1700 |00db: if-ne v1, v7, 00f2 // +0017
[all …]
Dbytecodes.txt1111 0011f2: 3201 e7ff |0021: if-eq v1, v0, 0008 // -0019
1319 001470: 6118 1a00 |00f2: sget-wide v24, Lcom/google/android/test/Test;…
1390 0x00b0 - 0x013e reg=17 f2 F
1501 0015f2: 9202 0e09 |000f: mul-int v2, v14, v9
1628 0016f2: 9d06 1e14 |0029: mul-long v6, v30, v20
1694 0017f2: 1618 ff00 |00a9: const-wide/16 v24, #int 255 // #ff
Dinvoke-custom.txt236 002694: 1a02 1000 |0014: const-string v2, ", f2: " // string@0010
250 0x0000 - 0x0024 reg=4 f2 F
272 0026f2: 6e20 c500 4100 |0017: invoke-virtual {v1, v4}, Ljava/lang/StringBui…
852 0019f2: 1301 e803 |0009: const/16 v1, #int 1000 // #3e8
1874 0021c8: 0c02 |00f2: move-result-object v2
1884 0021f2: 6e20 af00 2100 |0107: invoke-virtual {v1, v2}, Ljava/io/PrintStream…
1990 0023c8: 6e10 c000 0000 |01f2: invoke-virtual {v0}, Ljava/lang/Object;.getCl…
3369 …|000f: invoke-virtual {v0, v2}, Ljava/util/concurrent/atomic/AtomicInteger;.set:(I)V // method@00f2
3575 0030f2: 7110 6b00 0000 |0005: invoke-static {v0}, LTestInvokeCustomWithConc…
3690 0032f2: 9000 0203 |0005: add-int v0, v2, v3
[all …]
/art/runtime/interpreter/mterp/mips/
Dmain.S124 #define fv1 $$f2
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S436 sdc1 $f2, 24($sp)
485 ldc1 $f2, 24($sp)
720 ldc1 $f2, 1*8($a1)
/art/compiler/optimizing/
Dcode_generator_mips.cc1116 FRegister f2 = loc2.AsFpuRegister<FRegister>(); in EmitSwap() local
1118 __ MovS(FTMP, f2); in EmitSwap()
1119 __ MovS(f2, f1); in EmitSwap()
1123 __ MovD(FTMP, f2); in EmitSwap()
1124 __ MovD(f2, f1); in EmitSwap()
/art/test/083-compiler-regressions/src/
DMain.java5342 float f2 = 2; in largeFrameFloat() local
7340 f2 += f1; in largeFrameFloat()
7342 f3 += f2; in largeFrameFloat()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S2635 ldc1 $f2, 16($sp)