/external/libffi/testsuite/libffi.call/ |
return_fl1.c | 10 static float return_fl(float fl1, float fl2) 12 return fl1 + fl2; 19 float fl1, fl2, rfl; local 24 values[1] = &fl2; 30 fl2 = 128.0; 33 printf ("%f vs %f\n", rfl, return_fl(fl1, fl2)); 34 CHECK(rfl == fl1 + fl2);
|
return_dbl1.c | 10 static double return_dbl(double dbl1, float fl2, unsigned int in3, double dbl4) 12 return dbl1 + fl2 + in3 + dbl4; 20 float fl2; local 27 values[1] = &fl2; 35 fl2 = 128.0; 40 printf ("%f vs %f\n", rdbl, return_dbl(dbl1, fl2, in3, dbl4)); 41 CHECK(rdbl == dbl1 + fl2 + in3 + dbl4);
|
return_fl2.c | 11 static float return_fl(float fl1, float fl2, float fl3, float fl4) 15 sum = fl1 + fl2 + fl3 + fl4; 23 float fl1, fl2, fl3, fl4, rfl; local 31 values[1] = &fl2; 39 fl2 = 128.0; 44 printf ("%f vs %f\n", rfl, return_fl(fl1, fl2, fl3, fl4)); 46 sum = fl1 + fl2 + fl3 + fl4;
|
return_fl3.c | 10 static float return_fl(float fl1, float fl2, unsigned int in3, float fl4) 12 return fl1 + fl2 + in3 + fl4; 19 float fl1, fl2, fl4, rfl; local 26 values[1] = &fl2; 34 fl2 = 128.0; 39 printf ("%f vs %f\n", rfl, return_fl(fl1, fl2, in3, fl4)); 40 CHECK(rfl == fl1 + fl2 + in3 + fl4);
|
/art/test/041-narrowing/src/ |
Main.java | 35 float fl2 = Float.NaN; local 38 + (Long.toHexString((byte)fl2).equals("0") ? "00" : Long.toHexString((byte)fl2) 41 + (Integer.toHexString((short)fl2).equals("0") ? "0000" : Integer.toHexString( 42 (short)fl2).substring(4)) + " expected: 0000"); 44 + (Integer.toHexString((int)fl2).equals("0") ? "00000000" : Integer 45 .toHexString((int)fl2)) + " expected: 00000000"); 47 + (Long.toHexString((long)fl2).equals("0") ? "0000000000000000" : Long 48 .toHexString((long)fl2)) + " expected: 0000000000000000");
|
/dalvik/tests/041-narrowing/src/ |
Main.java | 35 float fl2 = Float.NaN; local 38 + (Long.toHexString((byte)fl2).equals("0") ? "00" : Long.toHexString((byte)fl2) 41 + (Integer.toHexString((short)fl2).equals("0") ? "0000" : Integer.toHexString( 42 (short)fl2).substring(4)) + " expected: 0000"); 44 + (Integer.toHexString((int)fl2).equals("0") ? "00000000" : Integer 45 .toHexString((int)fl2)) + " expected: 00000000"); 47 + (Long.toHexString((long)fl2).equals("0") ? "0000000000000000" : Long 48 .toHexString((long)fl2)) + " expected: 0000000000000000");
|
/libcore/harmony-tests/src/test/java/tests/api/java/math/ |
BigDecimalTest.java | 330 BigDecimal fl2 = new BigDecimal(2.345E37); local 331 assertTrue("the float representation of bigDecimal 2.345E37", fl2 333 fl2 = new BigDecimal(-1.00E-44); 334 assertTrue("the float representation of bigDecimal -1.00E-44", fl2 336 fl2 = new BigDecimal(-3E12); 337 assertTrue("the float representation of bigDecimal -3E12", fl2 339 fl2 = new BigDecimal(Double.MAX_VALUE); 342 fl2.floatValue() == Float.POSITIVE_INFINITY); 343 fl2 = new BigDecimal(-Double.MAX_VALUE); 346 fl2.floatValue() == Float.NEGATIVE_INFINITY) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
parser.py | 220 fl2 = self.first_line(l2) 221 if fl1 != fl2: 222 all_arcs.append((fl1, fl2))
|