Lines Matching refs:y
121 static float[] floatOperTest(float x, float y) { in floatOperTest() argument
127 results[0] = x + y; in floatOperTest()
128 results[1] = x - y; in floatOperTest()
129 results[2] = x * y; in floatOperTest()
130 results[3] = x / y; in floatOperTest()
131 results[4] = x % -y; in floatOperTest()
134 results[8] = x + (((((x + y) - y) * y) / y) % y); in floatOperTest()
151 static double[] doubleOperTest(double x, double y) { in doubleOperTest() argument
157 results[0] = x + y; in doubleOperTest()
158 results[1] = x - y; in doubleOperTest()
159 results[2] = x * y; in doubleOperTest()
160 results[3] = x / y; in doubleOperTest()
161 results[4] = x % -y; in doubleOperTest()
164 results[8] = x + (((((x + y) - y) * y) / y) % y); in doubleOperTest()