Lines Matching refs:y
135 static float[] floatOperTest(float x, float y) { in floatOperTest() argument
141 results[0] = x + y; in floatOperTest()
142 results[1] = x - y; in floatOperTest()
143 results[2] = x * y; in floatOperTest()
144 results[3] = x / y; in floatOperTest()
145 results[4] = x % -y; in floatOperTest()
148 results[8] = x + (((((x + y) - y) * y) / y) % y); in floatOperTest()
165 static double[] doubleOperTest(double x, double y) { in doubleOperTest() argument
171 results[0] = x + y; in doubleOperTest()
172 results[1] = x - y; in doubleOperTest()
173 results[2] = x * y; in doubleOperTest()
174 results[3] = x / y; in doubleOperTest()
175 results[4] = x % -y; in doubleOperTest()
178 results[8] = x + (((((x + y) - y) * y) / y) % y); in doubleOperTest()