Lines Matching full:y

11 function inline_add_strong(x, y) {  argument
13 return x + y;
16 function inline_add_strong_outer(x, y) { argument
17 return inline_add_strong(x, y);
20 function inline_sub_strong(x, y) { argument
22 return x - y;
25 function inline_sub_strong_outer(x, y) { argument
26 return inline_sub_strong(x, y);
29 function inline_mul_strong(x, y) { argument
31 return x * y;
34 function inline_mul_strong_outer(x, y) { argument
35 return inline_mul_strong(x, y);
38 function inline_div_strong(x, y) { argument
40 return x / y;
43 function inline_div_strong_outer(x, y) { argument
44 return inline_div_strong(x, y);
47 function inline_mod_strong(x, y) { argument
49 return x % y;
52 function inline_mod_strong_outer(x, y) { argument
53 return inline_mod_strong(x, y);
56 function inline_or_strong(x, y) { argument
58 return x | y;
61 function inline_or_strong_outer(x, y) { argument
62 return inline_or_strong(x, y);
65 function inline_and_strong(x, y) { argument
67 return x & y;
70 function inline_and_strong_outer(x, y) { argument
71 return inline_and_strong(x, y);
74 function inline_xor_strong(x, y) { argument
76 return x ^ y;
79 function inline_xor_strong_outer(x, y) { argument
80 return inline_xor_strong(x, y);
83 function inline_shl_strong(x, y) { argument
85 return x << y;
88 function inline_shl_strong_outer(x, y) { argument
89 return inline_shl_strong(x, y);
92 function inline_shr_strong(x, y) { argument
94 return x >> y;
97 function inline_shr_strong_outer(x, y) { argument
98 return inline_shr_strong(x, y);
101 function inline_sar_strong(x, y) { argument
103 return x >>> y;
106 function inline_sar_strong_outer(x, y) { argument
107 return inline_sar_strong(x, y);
110 function inline_less_strong(x, y) { argument
112 return x < y;
115 function inline_less_strong_outer(x, y) { argument
116 return inline_less_strong(x, y);
119 function inline_greater_strong(x, y) { argument
121 return x > y;
124 function inline_greater_strong_outer(x, y) { argument
125 return inline_greater_strong(x, y);
128 function inline_less_equal_strong(x, y) { argument
130 return x <= y;
133 function inline_less_equal_strong_outer(x, y) { argument
134 return inline_less_equal_strong(x, y);
137 function inline_greater_equal_strong(x, y) { argument
139 return x >= y;
142 function inline_greater_equal_strong_outer(x, y) { argument
143 return inline_greater_equal_strong(x, y);
146 function inline_add(x, y) { argument
147 return x + y;
150 function inline_add_outer_strong(x, y) { argument
152 return inline_add(x, y);
155 function inline_sub(x, y) { argument
156 return x - y;
159 function inline_sub_outer_strong(x, y) { argument
161 return inline_sub(x, y);
164 function inline_mul(x, y) { argument
165 return x * y;
168 function inline_mul_outer_strong(x, y) { argument
170 return inline_mul(x, y);
173 function inline_div(x, y) { argument
174 return x / y;
177 function inline_div_outer_strong(x, y) { argument
179 return inline_div(x, y);
182 function inline_mod(x, y) { argument
183 return x % y;
186 function inline_mod_outer_strong(x, y) { argument
188 return inline_mod(x, y);
191 function inline_or(x, y) { argument
192 return x | y;
195 function inline_or_outer_strong(x, y) { argument
197 return inline_or(x, y);
200 function inline_and(x, y) { argument
201 return x & y;
204 function inline_and_outer_strong(x, y) { argument
206 return inline_and(x, y);
209 function inline_xor(x, y) { argument
210 return x ^ y;
213 function inline_xor_outer_strong(x, y) { argument
215 return inline_xor(x, y);
218 function inline_shl(x, y) { argument
219 return x << y;
222 function inline_shl_outer_strong(x, y) { argument
224 return inline_shl(x, y);
227 function inline_shr(x, y) { argument
228 return x >> y;
231 function inline_shr_outer_strong(x, y) { argument
233 return inline_shr(x, y);
236 function inline_sar(x, y) { argument
237 return x >>> y;
240 function inline_sar_outer_strong(x, y) { argument
242 return inline_sar(x, y);
245 function inline_less(x, y) { argument
246 return x < y;
249 function inline_less_outer_strong(x, y) { argument
251 return inline_less(x, y);
254 function inline_greater(x, y) { argument
255 return x > y;
258 function inline_greater_outer_strong(x, y) { argument
260 return inline_greater(x, y);
263 function inline_less_equal(x, y) { argument
264 return x <= y;
267 function inline_less_equal_outer_strong(x, y) { argument
269 return inline_less_equal(x, y);
272 function inline_greater_equal(x, y) { argument
273 return x >>> y;
276 function inline_greater_equal_outer_strong(x, y) { argument
278 return inline_greater_equal(x, y);
283 function inline_add_string_strong(x, y) { argument
285 return x + y;
288 function inline_add_string_strong_outer(x, y) { argument
289 return inline_add_string_strong(x, y);
292 function inline_less_string_strong(x, y) { argument
294 return x < y;
297 function inline_less_string_strong_outer(x, y) { argument
298 return inline_less_string_strong(x, y);
301 function inline_greater_string_strong(x, y) { argument
303 return x > y;
306 function inline_greater_string_strong_outer(x, y) { argument
307 return inline_greater_string_strong(x, y);
310 function inline_less_equal_string_strong(x, y) { argument
312 return x <= y;
315 function inline_less_equal_string_strong_outer(x, y) { argument
316 return inline_less_equal_string_strong(x, y);
319 function inline_greater_equal_string_strong(x, y) { argument
321 return x >= y;
324 function inline_greater_equal_string_strong_outer(x, y) { argument
325 return inline_greater_equal_string_strong(x, y);
328 function inline_add_string(x, y) { argument
329 return x + y;
332 function inline_add_string_outer_strong(x, y) { argument
334 return inline_add_string(x, y);
337 function inline_less_string(x, y) { argument
338 return x < y;
341 function inline_less_string_outer_strong(x, y) { argument
343 return inline_less_string(x, y);
346 function inline_greater_string(x, y) { argument
347 return x > y;
350 function inline_greater_string_outer_strong(x, y) { argument
352 return inline_greater_string(x, y);
355 function inline_less_equal_string(x, y) { argument
356 return x <= y;
359 function inline_less_equal_string_outer_strong(x, y) { argument
361 return inline_less_equal_string(x, y);
364 function inline_greater_equal_string(x, y) { argument
365 return x >= y;
368 function inline_greater_equal_string_outer_strong(x, y) { argument
370 return inline_greater_equal_string(x, y);