HomeSort by relevance Sort by last modified time
    Searched refs:fl3 (Results 1 - 4 of 4) sorted by null

  /external/libffi/testsuite/libffi.call/
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
32 values[2] = &fl3;
40 fl3 = 255.1;
44 printf ("%f vs %f\n", rfl, return_fl(fl1, fl2, fl3, fl4));
46 sum = fl1 + fl2 + fl3 + fl4;
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
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
32 values[2] = &fl3;
40 fl3 = 255.1;
44 printf ("%f vs %f\n", rfl, return_fl(fl1, fl2, fl3, fl4));
46 sum = fl1 + fl2 + fl3 + fl4;
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
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
32 values[2] = &fl3;
40 fl3 = 255.1;
44 printf ("%f vs %f\n", rfl, return_fl(fl1, fl2, fl3, fl4));
46 sum = fl1 + fl2 + fl3 + fl4;
  /art/test/041-narrowing/src/
Main.java 73 float fl3 = Float.POSITIVE_INFINITY; local
76 + (Integer.toHexString((byte)fl3).equals("0") ? "00" : Integer.toHexString(
77 (byte)fl3).substring(6)) + " expected: ff");
79 + (Integer.toHexString((short)fl3).equals("0") ? "0000" : Integer.toHexString(
80 (short)fl3).substring(4)) + " expected: ffff");
82 + Integer.toHexString((int)fl3) + " expected: 7fffffff");
83 System.out.println("(long) Float.POSITIVE_INFINITY = " + Long.toHexString((long)fl3)

Completed in 3105 milliseconds