Searched refs:fl2 (Results 1 - 6 of 6) sorted by relevance

/external/libffi/testsuite/libffi.call/
H A Dreturn_fl1.c10 static float return_fl(float fl1, float fl2) argument
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);
H A Dreturn_dbl1.c10 static double return_dbl(double dbl1, float fl2, unsigned int in3, double dbl4) argument
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);
H A Dreturn_fl2.c11 static float return_fl(float fl1, float fl2, float fl3, float fl4) argument
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;
H A Dreturn_fl3.c10 static float return_fl(float fl1, float fl2, unsigned int in3, float fl4) argument
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);
/external/apache-harmony/math/src/test/java/tests/api/java/math/
H A DBigDecimalTest.java330 BigDecimal fl2 = new BigDecimal(2.345E37);
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
[all...]
/external/webkit/Source/WebCore/dom/
H A DNode.cpp314 bool fl2 = s2 && s2->hasPseudoStyle(FIRST_LETTER); local
321 if (display1 != display2 || fl1 != fl2 || colSpan1 != colSpan2 || (s1 && s2 && !s1->contentDataEquivalent(s2)))

Completed in 76 milliseconds