Lines Matching refs:x
35 void test_int(int x) { in test_int() argument
36 (void)std::abs(x); in test_int()
38 (void)abs(x); in test_int()
39 (void)labs(x); in test_int()
40 (void)llabs(x); in test_int()
42 (void)fabsf(x); in test_int()
46 (void)fabs(x); in test_int()
50 (void)fabsl(x); in test_int()
55 (void)cabsf(x); in test_int()
59 (void)cabs(x); in test_int()
63 (void)cabsl(x); in test_int()
68 (void)__builtin_abs(x); in test_int()
69 (void)__builtin_labs(x); in test_int()
70 (void)__builtin_llabs(x); in test_int()
72 (void)__builtin_fabsf(x); in test_int()
76 (void)__builtin_fabs(x); in test_int()
80 (void)__builtin_fabsl(x); in test_int()
85 (void)__builtin_cabsf(x); in test_int()
89 (void)__builtin_cabs(x); in test_int()
93 (void)__builtin_cabsl(x); in test_int()
99 void test_long(long x) { in test_long() argument
100 (void)std::abs(x); in test_long()
102 (void)abs(x); // no warning - int and long are same length for this target in test_long()
103 (void)labs(x); in test_long()
104 (void)llabs(x); in test_long()
106 (void)fabsf(x); in test_long()
110 (void)fabs(x); in test_long()
114 (void)fabsl(x); in test_long()
119 (void)cabsf(x); in test_long()
123 (void)cabs(x); in test_long()
127 (void)cabsl(x); in test_long()
132 (void)__builtin_abs(x); // no warning - int and long are same length for in test_long()
134 (void)__builtin_labs(x); in test_long()
135 (void)__builtin_llabs(x); in test_long()
137 (void)__builtin_fabsf(x); in test_long()
141 (void)__builtin_fabs(x); in test_long()
145 (void)__builtin_fabsl(x); in test_long()
150 (void)__builtin_cabsf(x); in test_long()
154 (void)__builtin_cabs(x); in test_long()
158 (void)__builtin_cabsl(x); in test_long()
164 void test_long_long(long long x) { in test_long_long() argument
165 (void)std::abs(x); in test_long_long()
167 (void)abs(x); in test_long_long()
171 (void)labs(x); in test_long_long()
175 (void)llabs(x); in test_long_long()
177 (void)fabsf(x); in test_long_long()
181 (void)fabs(x); in test_long_long()
185 (void)fabsl(x); in test_long_long()
190 (void)cabsf(x); in test_long_long()
194 (void)cabs(x); in test_long_long()
198 (void)cabsl(x); in test_long_long()
203 (void)__builtin_abs(x); in test_long_long()
207 (void)__builtin_labs(x); in test_long_long()
211 (void)__builtin_llabs(x); in test_long_long()
213 (void)__builtin_fabsf(x); in test_long_long()
217 (void)__builtin_fabs(x); in test_long_long()
221 (void)__builtin_fabsl(x); in test_long_long()
226 (void)__builtin_cabsf(x); in test_long_long()
230 (void)__builtin_cabs(x); in test_long_long()
234 (void)__builtin_cabsl(x); in test_long_long()
240 void test_float(float x) { in test_float() argument
241 (void)std::abs(x); in test_float()
243 (void)abs(x); in test_float()
247 (void)labs(x); in test_float()
251 (void)llabs(x); in test_float()
256 (void)fabsf(x); in test_float()
257 (void)fabs(x); in test_float()
258 (void)fabsl(x); in test_float()
260 (void)cabsf(x); in test_float()
264 (void)cabs(x); in test_float()
268 (void)cabsl(x); in test_float()
273 (void)__builtin_abs(x); in test_float()
277 (void)__builtin_labs(x); in test_float()
281 (void)__builtin_llabs(x); in test_float()
286 (void)__builtin_fabsf(x); in test_float()
287 (void)__builtin_fabs(x); in test_float()
288 (void)__builtin_fabsl(x); in test_float()
290 (void)__builtin_cabsf(x); in test_float()
294 (void)__builtin_cabs(x); in test_float()
298 (void)__builtin_cabsl(x); in test_float()
304 void test_double(double x) { in test_double() argument
305 (void)std::abs(x); in test_double()
307 (void)abs(x); in test_double()
311 (void)labs(x); in test_double()
315 (void)llabs(x); in test_double()
320 (void)fabsf(x); in test_double()
324 (void)fabs(x); in test_double()
325 (void)fabsl(x); in test_double()
327 (void)cabsf(x); in test_double()
331 (void)cabs(x); in test_double()
335 (void)cabsl(x); in test_double()
340 (void)__builtin_abs(x); in test_double()
344 (void)__builtin_labs(x); in test_double()
348 (void)__builtin_llabs(x); in test_double()
353 (void)__builtin_fabsf(x); in test_double()
357 (void)__builtin_fabs(x); in test_double()
358 (void)__builtin_fabsl(x); in test_double()
360 (void)__builtin_cabsf(x); in test_double()
364 (void)__builtin_cabs(x); in test_double()
368 (void)__builtin_cabsl(x); in test_double()
374 void test_long_double(long double x) { in test_long_double() argument
375 (void)std::abs(x); in test_long_double()
377 (void)abs(x); in test_long_double()
381 (void)labs(x); in test_long_double()
385 (void)llabs(x); in test_long_double()
390 (void)fabsf(x); in test_long_double()
394 (void)fabs(x); in test_long_double()
398 (void)fabsl(x); in test_long_double()
400 (void)cabsf(x); in test_long_double()
404 (void)cabs(x); in test_long_double()
408 (void)cabsl(x); in test_long_double()
413 (void)__builtin_abs(x); in test_long_double()
417 (void)__builtin_labs(x); in test_long_double()
421 (void)__builtin_llabs(x); in test_long_double()
426 (void)__builtin_fabsf(x); in test_long_double()
430 (void)__builtin_fabs(x); in test_long_double()
434 (void)__builtin_fabsl(x); in test_long_double()
436 (void)__builtin_cabsf(x); in test_long_double()
440 (void)__builtin_cabs(x); in test_long_double()
444 (void)__builtin_cabsl(x); in test_long_double()
450 void test_complex_float(_Complex float x) { in test_complex_float() argument
451 (void)abs(x); in test_complex_float()
455 (void)labs(x); in test_complex_float()
459 (void)llabs(x); in test_complex_float()
464 (void)fabsf(x); in test_complex_float()
468 (void)fabs(x); in test_complex_float()
472 (void)fabsl(x); in test_complex_float()
477 (void)cabsf(x); in test_complex_float()
478 (void)cabs(x); in test_complex_float()
479 (void)cabsl(x); in test_complex_float()
481 (void)__builtin_abs(x); in test_complex_float()
485 (void)__builtin_labs(x); in test_complex_float()
489 (void)__builtin_llabs(x); in test_complex_float()
494 (void)__builtin_fabsf(x); in test_complex_float()
498 (void)__builtin_fabs(x); in test_complex_float()
502 (void)__builtin_fabsl(x); in test_complex_float()
507 (void)__builtin_cabsf(x); in test_complex_float()
508 (void)__builtin_cabs(x); in test_complex_float()
509 (void)__builtin_cabsl(x); in test_complex_float()
512 void test_complex_double(_Complex double x) { in test_complex_double() argument
513 (void)abs(x); in test_complex_double()
517 (void)labs(x); in test_complex_double()
521 (void)llabs(x); in test_complex_double()
526 (void)fabsf(x); in test_complex_double()
530 (void)fabs(x); in test_complex_double()
534 (void)fabsl(x); in test_complex_double()
539 (void)cabsf(x); in test_complex_double()
543 (void)cabs(x); in test_complex_double()
544 (void)cabsl(x); in test_complex_double()
546 (void)__builtin_abs(x); in test_complex_double()
550 (void)__builtin_labs(x); in test_complex_double()
554 (void)__builtin_llabs(x); in test_complex_double()
559 (void)__builtin_fabsf(x); in test_complex_double()
563 (void)__builtin_fabs(x); in test_complex_double()
567 (void)__builtin_fabsl(x); in test_complex_double()
572 (void)__builtin_cabsf(x); in test_complex_double()
576 (void)__builtin_cabs(x); in test_complex_double()
577 (void)__builtin_cabsl(x); in test_complex_double()
580 void test_complex_long_double(_Complex long double x) { in test_complex_long_double() argument
581 (void)abs(x); in test_complex_long_double()
585 (void)labs(x); in test_complex_long_double()
589 (void)llabs(x); in test_complex_long_double()
594 (void)fabsf(x); in test_complex_long_double()
598 (void)fabs(x); in test_complex_long_double()
602 (void)fabsl(x); in test_complex_long_double()
607 (void)cabsf(x); in test_complex_long_double()
611 (void)cabs(x); in test_complex_long_double()
615 (void)cabsl(x); in test_complex_long_double()
617 (void)__builtin_abs(x); in test_complex_long_double()
621 (void)__builtin_labs(x); in test_complex_long_double()
625 (void)__builtin_llabs(x); in test_complex_long_double()
630 (void)__builtin_fabsf(x); in test_complex_long_double()
634 (void)__builtin_fabs(x); in test_complex_long_double()
638 (void)__builtin_fabsl(x); in test_complex_long_double()
643 (void)__builtin_cabsf(x); in test_complex_long_double()
647 (void)__builtin_cabs(x); in test_complex_long_double()
651 (void)__builtin_cabsl(x); in test_complex_long_double()
654 void test_unsigned_int(unsigned int x) { in test_unsigned_int() argument
655 (void)std::abs(x); in test_unsigned_int()
660 (void)abs(x); in test_unsigned_int()
664 (void)labs(x); in test_unsigned_int()
668 (void)llabs(x); in test_unsigned_int()
673 (void)fabsf(x); in test_unsigned_int()
677 (void)fabs(x); in test_unsigned_int()
681 (void)fabsl(x); in test_unsigned_int()
686 (void)cabsf(x); in test_unsigned_int()
690 (void)cabs(x); in test_unsigned_int()
694 (void)cabsl(x); in test_unsigned_int()
699 (void)__builtin_abs(x); in test_unsigned_int()
703 (void)__builtin_labs(x); in test_unsigned_int()
707 (void)__builtin_llabs(x); in test_unsigned_int()
712 (void)__builtin_fabsf(x); in test_unsigned_int()
716 (void)__builtin_fabs(x); in test_unsigned_int()
720 (void)__builtin_fabsl(x); in test_unsigned_int()
725 (void)__builtin_cabsf(x); in test_unsigned_int()
729 (void)__builtin_cabs(x); in test_unsigned_int()
733 (void)__builtin_cabsl(x); in test_unsigned_int()
739 void test_unsigned_long(unsigned long x) { in test_unsigned_long() argument
740 (void)std::abs(x); in test_unsigned_long()
745 (void)abs(x); in test_unsigned_long()
749 (void)labs(x); in test_unsigned_long()
753 (void)llabs(x); in test_unsigned_long()
758 (void)fabsf(x); in test_unsigned_long()
762 (void)fabs(x); in test_unsigned_long()
766 (void)fabsl(x); in test_unsigned_long()
771 (void)cabsf(x); in test_unsigned_long()
775 (void)cabs(x); in test_unsigned_long()
779 (void)cabsl(x); in test_unsigned_long()
784 (void)__builtin_abs(x); in test_unsigned_long()
788 (void)__builtin_labs(x); in test_unsigned_long()
792 (void)__builtin_llabs(x); in test_unsigned_long()
797 (void)__builtin_fabsf(x); in test_unsigned_long()
801 (void)__builtin_fabs(x); in test_unsigned_long()
805 (void)__builtin_fabsl(x); in test_unsigned_long()
810 (void)__builtin_cabsf(x); in test_unsigned_long()
814 (void)__builtin_cabs(x); in test_unsigned_long()
818 (void)__builtin_cabsl(x); in test_unsigned_long()