Lines Matching refs:b
42 void comparisonTestdd(double a, double b) { in comparisonTestdd() argument
44 a, b, a < b, a <= b, a == b, a >= b, a > b, a != b); in comparisonTestdd()
55 void comparisonTestdf(double a, float b) { in comparisonTestdf() argument
57 a, b, a < b, a <= b, a == b, a >= b, a > b, a != b); in comparisonTestdf()
67 void comparisonTestff(float a, float b) { in comparisonTestff() argument
69 a, b, a < b, a <= b, a == b, a >= b, a > b, a != b); in comparisonTestff()
79 void comparisonTestid(int a, double b) { in comparisonTestid() argument
81 a, b, a < b, a <= b, a == b, a >= b, a > b, a != b); in comparisonTestid()
90 void comparisonTestdi(double a, int b) { in comparisonTestdi() argument
92 a, b, a < b, a <= b, a == b, a >= b, a > b, a != b); in comparisonTestdi()
121 void testpassi(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k, int l) { in testpassi() argument
122 printf("testpassi: %d %d %d %d %d %d %d %d %d %d %d %d\n", a, b, c, d, e, f, g, h, i, j, k, l); in testpassi()
125 void testpassf(float a, float b, float c, float d, float e, float f, float g, float h, float i, flo… in testpassf() argument
126 printf("testpassf: %g %g %g %g %g %g %g %g %g %g %g %g\n", a, b, c, d, e, f, g, h, i, j, k, l); in testpassf()
129 void testpassd(double a, double b, double c, double d, double e, double f, double g, double h, doub… in testpassd() argument
130 printf("testpassd: %g %g %g %g %g %g %g %g %g %g %g %g\n", a, b, c, d, e, f, g, h, i, j, k, l); in testpassd()