Lines Matching refs:y

38 s4 iadd32(s4 x, s4 y) { return x + y; }
39 s8 iadd64(s8 x, s8 y) { return x + y; }
40 float fadd32(float x, float y) { return x + y; }
41 double fadd64(double x, double y) { return x + y; }
43 s4 isub32(s4 x, s4 y) { return x - y; }
44 s8 isub64(s8 x, s8 y) { return x - y; }
45 float fsub32(float x, float y) { return x - y; }
46 double fsub64(double x, double y) { return x - y; }
50 s4 imul32(s4 x, s4 y) { return x * y; }
51 s8 imul64(s8 x, s8 y) { return x * y; }
52 float fmul32(float x, float y) { return x * y; }
53 double fmul64(double x, double y) { return x * y; }
55 s4 idiv32(s4 x, s4 y) { return x / y; }
56 s8 idiv64(s8 x, s8 y) { return x / y; }
57 float fdiv32(float x, float y) { return x / y; }
58 double fdiv64(double x, double y) { return x / y; }
60 s4 irem32(s4 x, s4 y) { return x % y; }
61 s8 irem64(s8 x, s8 y) { return x % y; }
63 s4 iand32(s4 x, s4 y) { return x & y; }
64 s8 iand64(s8 x, s8 y) { return x & y; }
66 s4 ior32(s4 x, s4 y) { return x | y; }
67 s8 ior64(s8 x, s8 y) { return x | y; }
69 s4 ixor32(s4 x, s4 y) { return x ^ y; }
70 s8 ixor64(s8 x, s8 y) { return x ^ y; }
143 int cmpl_float(float x, float y)
147 if (x == y)
149 else if (x > y)
151 else /* (x < y) or NaN */
156 int cmpg_float(float x, float y)
160 if (x == y)
162 else if (x < y)
164 else /* (x > y) or NaN */
169 int cmpl_double(double x, double y)
173 if (x == y)
175 else if (x > y)
177 else /* (x < y) or NaN */
182 int cmpg_double(double x, double y)
186 if (x == y)
188 else if (x < y)
190 else /* (x > y) or NaN */
195 int cmp_long(s8 x, s8 y)
199 if (x == y)
201 else if (x < y)
203 else /* (x > y) */