Lines Matching refs:f
25 float f; in convTest() local
31 f = 1234.5678f; in convTest()
32 i = (int) f; in convTest()
35 f = -1234.5678f; in convTest()
36 i = (int) f; in convTest()
40 f = 1238.5678f; in convTest()
41 l = (long) f; in convTest()
44 f = -1238.5678f; in convTest()
45 l = (long) f; in convTest()
49 f = 1238.5678f; in convTest()
50 d = (double) f; in convTest()
73 f = (float) d; in convTest()
74 Main.assertTrue(f > 1238.567 && f < 1238.568); in convTest()
87 f = (float) i; in convTest()
88 Main.assertTrue(f > 1233.9f && f < 1234.1f); in convTest()
91 f = (float) i; in convTest()
92 Main.assertTrue(f < -1233.9f && f > -1234.1f); in convTest()
114 f = (float) l; in convTest()
115 Main.assertTrue(f > 5.6789564E9 && f < 5.6789566E9); in convTest()
118 f = (float) l; in convTest()
119 Main.assertTrue(f < -5.6789564E9 && f > -5.6789566E9); in convTest()
232 static float unopTest(float f) { in unopTest() argument
233 f = -f; in unopTest()
234 return f; in unopTest()
237 static int[] convI(long l, float f, double d, float zero) { in convI() argument
240 results[1] = (int) f; in convI()
257 static long[] convL(int i, float f, double d, double zero) { in convL() argument
260 results[1] = (long) f; in convL()
291 static double[] convD(int i, long l, float f) { in convD() argument
295 results[2] = (double) f; in convD()
308 float f = 10.0f; // const/special in checkConsts() local
309 Main.assertTrue(f > 9.9 && f < 10.1); in checkConsts()