Home
last modified time | relevance | path

Searched refs:ff (Results 1 – 14 of 14) sorted by relevance

/art/test/041-narrowing/
Dexpected.txt19 (byte) Double.POSITIVE_INFINITY = ff expected: ff
29 (byte) Float.POSITIVE_INFINITY = ff expected: ff
/art/test/451-spill-splot/src/
DMain.java38 float ff = 5; in main() local
49 System.out.println(aa + bb + cc + dd + ee + ff + gg + hh + ii + jj + kk + ll + mm + nn); in main()
67 ff = $noinline$computeFloat(); in main()
/art/test/003-omnibus-opcodes/src/
DFloatMath.java339 static void jlmTests(float ff, double dd) { in jlmTests() argument
342 Main.assertTrue(approxEqual(Math.abs(ff), ff, 0.001f)); in jlmTests() local
343 Main.assertTrue(approxEqual(Math.abs(-ff), ff, 0.001f)); in jlmTests()
344 Main.assertTrue(approxEqual(Math.min(ff, -5.0f), -5.0f, 0.001f)); in jlmTests()
345 Main.assertTrue(approxEqual(Math.max(ff, -5.0f), ff, 0.001f)); in jlmTests() local
/art/test/005-annotations/src/android/test/anno/
DAnnoArrayField.java15 float[] ff() default {3.141592654f}; in ff() method
DTestAnnotations.java112 ff = {1.1f,1.2f,1.3f},
/art/test/dexdump/
Dcheckers.txt688 001a02: 1306 ff00 |0003: const/16 v6, #int 255 // #ff
800 001bfa: 1300 1003 |00ff: const/16 v0, #int 784 // #310
965 001eaa: 2900 70ff |0257: goto/16 01c7 // -0090
1351 002346: 5200 3c00 |00ff: iget v0, v0, Lcom/google/android/checkers/a;.…
1403 0023d2: 12f2 |0001: const/4 v2, #int -1 // #ff
1426 0023fa: 12f1 |0001: const/4 v1, #int -1 // #ff
1559 0025dc: 2900 45ff |00f2: goto/16 0037 // -00bb
1566 0025f6: 5490 2200 |00ff: iget-object v0, v9, Lcom/google/android/check…
1596 00265e: 2900 04ff |0133: goto/16 0037 // -00fc
1630 0026d0: d800 00ff |016c: add-int/lit8 v0, v0, #int -1 // #ff
[all …]
Dbytecodes.txt1036 001124: df00 02ff |0010: xor-int/lit8 v0, v2, #int -1 // #ff
1055 00116e: d800 02ff |0035: add-int/lit8 v0, v2, #int -1 // #ff
1457 0015a8: df01 09ff |0048: xor-int/lit8 v1, v9, #int -1 // #ff
1498 0015e6: df09 0eff |0009: xor-int/lit8 v9, v14, #int -1 // #ff
1508 00160e: d5da ff00 |001d: and-int/lit16 v10, v13, #int 255 // #00ff
1510 001616: df0b 0bff |0021: xor-int/lit8 v11, v11, #int -1 // #ff
1512 00161e: df0a 00ff |0025: xor-int/lit8 v10, v0, #int -1 // #ff
1518 00162e: df0b 05ff |002d: xor-int/lit8 v11, v5, #int -1 // #ff
1530 001650: d5db ff00 |003e: and-int/lit16 v11, v13, #int 255 // #00ff
1532 001656: d4db ff00 |0041: rem-int/lit16 v11, v13, #int 255 // #00ff
[all …]
Dall.txt436 000774: 28ff |0004: goto 0003 // -0001
Dinvoke-custom.txt904 001a8e: 1302 ff05 |0039: const/16 v2, #int 1535 // #5ff
3572 0030e8: 12f0 |0000: const/4 v0, #int -1 // #ff
3720 00332e: 12f0 |0003: const/4 v0, #int -1 // #ff
3956 003512: 12f0 |0003: const/4 v0, #int -1 // #ff
3990 00356c: 12f2 |0022: const/4 v2, #int -1 // #ff
4679 … 1a00 ff00 |0000: const-string v0, "bsmWithStringArray" // string@00ff
5129 003d8e: 2900 78ff |0095: goto/16 000d // -0088
/art/test/005-annotations/
Dexpected.txt2 …ng1: @android.test.anno.AnnoArrayField(bb=[], cc=[a, b], dd=[0.987654321], ff=[3.1415927], ii=[], …
3 …ndroid.test.anno.AnnoArrayField(bb=[-1, 0, 1], cc=[Q], dd=[0.3, 0.6, 0.9], ff=[1.1, 1.2, 1.3], ii=…
/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc15 " 22: 98ff ldr r0, [sp, #1020] ; 0x3fc\n",
25 " 42: 90ff str r0, [sp, #1020] ; 0x3fc\n",
191 " 5c: e9d4 23ff ldrd r2, r3, [r4, #1020] ; 0x3fc\n",
242 " 68: e9c4 23ff strd r2, r3, [r4, #1020] ; 0x3fc\n",
/art/test/046-reflect/
Dexpected.txt92 Target constructor (IF)V : ii=7 ff=3.3333
/art/test/046-reflect/src/
DMain.java780 public Target(int ii, float ff) { in Target() argument
782 + ii + " ff=" + ff); in Target()
/art/test/710-varhandle-creation/src/
DMain.java44 final float ff = 6.0f; field in Main