Lines Matching refs:x

16 void test_int(int x) {  in test_int()  argument
17 (void)abs(x); in test_int()
18 (void)labs(x); in test_int()
19 (void)llabs(x); in test_int()
21 (void)fabsf(x); in test_int()
25 (void)fabs(x); in test_int()
29 (void)fabsl(x); in test_int()
34 (void)cabsf(x); in test_int()
38 (void)cabs(x); in test_int()
42 (void)cabsl(x); in test_int()
47 (void)__builtin_abs(x); in test_int()
48 (void)__builtin_labs(x); in test_int()
49 (void)__builtin_llabs(x); in test_int()
51 (void)__builtin_fabsf(x); in test_int()
55 (void)__builtin_fabs(x); in test_int()
59 (void)__builtin_fabsl(x); in test_int()
64 (void)__builtin_cabsf(x); in test_int()
68 (void)__builtin_cabs(x); in test_int()
72 (void)__builtin_cabsl(x); in test_int()
78 void test_long(long x) { in test_long() argument
79 (void)abs(x); // no warning - int and long are same length for this target in test_long()
80 (void)labs(x); in test_long()
81 (void)llabs(x); in test_long()
83 (void)fabsf(x); in test_long()
87 (void)fabs(x); in test_long()
91 (void)fabsl(x); in test_long()
96 (void)cabsf(x); in test_long()
100 (void)cabs(x); in test_long()
104 (void)cabsl(x); in test_long()
109 (void)__builtin_abs(x); // no warning - int and long are same length for in test_long()
111 (void)__builtin_labs(x); in test_long()
112 (void)__builtin_llabs(x); in test_long()
114 (void)__builtin_fabsf(x); in test_long()
118 (void)__builtin_fabs(x); in test_long()
122 (void)__builtin_fabsl(x); in test_long()
127 (void)__builtin_cabsf(x); in test_long()
131 (void)__builtin_cabs(x); in test_long()
135 (void)__builtin_cabsl(x); in test_long()
141 void test_long_long(long long x) { in test_long_long() argument
142 (void)abs(x); in test_long_long()
146 (void)labs(x); in test_long_long()
150 (void)llabs(x); in test_long_long()
152 (void)fabsf(x); in test_long_long()
156 (void)fabs(x); in test_long_long()
160 (void)fabsl(x); in test_long_long()
165 (void)cabsf(x); in test_long_long()
169 (void)cabs(x); in test_long_long()
173 (void)cabsl(x); in test_long_long()
178 (void)__builtin_abs(x); in test_long_long()
182 (void)__builtin_labs(x); in test_long_long()
186 (void)__builtin_llabs(x); in test_long_long()
188 (void)__builtin_fabsf(x); in test_long_long()
192 (void)__builtin_fabs(x); in test_long_long()
196 (void)__builtin_fabsl(x); in test_long_long()
201 (void)__builtin_cabsf(x); in test_long_long()
205 (void)__builtin_cabs(x); in test_long_long()
209 (void)__builtin_cabsl(x); in test_long_long()
215 void test_float(float x) { in test_float() argument
216 (void)abs(x); in test_float()
220 (void)labs(x); in test_float()
224 (void)llabs(x); in test_float()
229 (void)fabsf(x); in test_float()
230 (void)fabs(x); in test_float()
231 (void)fabsl(x); in test_float()
233 (void)cabsf(x); in test_float()
237 (void)cabs(x); in test_float()
241 (void)cabsl(x); in test_float()
246 (void)__builtin_abs(x); in test_float()
250 (void)__builtin_labs(x); in test_float()
254 (void)__builtin_llabs(x); in test_float()
259 (void)__builtin_fabsf(x); in test_float()
260 (void)__builtin_fabs(x); in test_float()
261 (void)__builtin_fabsl(x); in test_float()
263 (void)__builtin_cabsf(x); in test_float()
267 (void)__builtin_cabs(x); in test_float()
271 (void)__builtin_cabsl(x); in test_float()
277 void test_double(double x) { in test_double() argument
278 (void)abs(x); in test_double()
282 (void)labs(x); in test_double()
286 (void)llabs(x); in test_double()
291 (void)fabsf(x); in test_double()
295 (void)fabs(x); in test_double()
296 (void)fabsl(x); in test_double()
298 (void)cabsf(x); in test_double()
302 (void)cabs(x); in test_double()
306 (void)cabsl(x); in test_double()
311 (void)__builtin_abs(x); in test_double()
315 (void)__builtin_labs(x); in test_double()
319 (void)__builtin_llabs(x); in test_double()
324 (void)__builtin_fabsf(x); in test_double()
328 (void)__builtin_fabs(x); in test_double()
329 (void)__builtin_fabsl(x); in test_double()
331 (void)__builtin_cabsf(x); in test_double()
335 (void)__builtin_cabs(x); in test_double()
339 (void)__builtin_cabsl(x); in test_double()
345 void test_long_double(long double x) { in test_long_double() argument
346 (void)abs(x); in test_long_double()
350 (void)labs(x); in test_long_double()
354 (void)llabs(x); in test_long_double()
359 (void)fabsf(x); in test_long_double()
363 (void)fabs(x); in test_long_double()
367 (void)fabsl(x); in test_long_double()
369 (void)cabsf(x); in test_long_double()
373 (void)cabs(x); in test_long_double()
377 (void)cabsl(x); in test_long_double()
382 (void)__builtin_abs(x); in test_long_double()
386 (void)__builtin_labs(x); in test_long_double()
390 (void)__builtin_llabs(x); in test_long_double()
395 (void)__builtin_fabsf(x); in test_long_double()
399 (void)__builtin_fabs(x); in test_long_double()
403 (void)__builtin_fabsl(x); in test_long_double()
405 (void)__builtin_cabsf(x); in test_long_double()
409 (void)__builtin_cabs(x); in test_long_double()
413 (void)__builtin_cabsl(x); in test_long_double()
419 void test_complex_float(_Complex float x) { in test_complex_float() argument
420 (void)abs(x); in test_complex_float()
424 (void)labs(x); in test_complex_float()
428 (void)llabs(x); in test_complex_float()
433 (void)fabsf(x); in test_complex_float()
437 (void)fabs(x); in test_complex_float()
441 (void)fabsl(x); in test_complex_float()
446 (void)cabsf(x); in test_complex_float()
447 (void)cabs(x); in test_complex_float()
448 (void)cabsl(x); in test_complex_float()
450 (void)__builtin_abs(x); in test_complex_float()
454 (void)__builtin_labs(x); in test_complex_float()
458 (void)__builtin_llabs(x); in test_complex_float()
463 (void)__builtin_fabsf(x); in test_complex_float()
467 (void)__builtin_fabs(x); in test_complex_float()
471 (void)__builtin_fabsl(x); in test_complex_float()
476 (void)__builtin_cabsf(x); in test_complex_float()
477 (void)__builtin_cabs(x); in test_complex_float()
478 (void)__builtin_cabsl(x); in test_complex_float()
481 void test_complex_double(_Complex double x) { in test_complex_double() argument
482 (void)abs(x); in test_complex_double()
486 (void)labs(x); in test_complex_double()
490 (void)llabs(x); in test_complex_double()
495 (void)fabsf(x); in test_complex_double()
499 (void)fabs(x); in test_complex_double()
503 (void)fabsl(x); in test_complex_double()
508 (void)cabsf(x); in test_complex_double()
512 (void)cabs(x); in test_complex_double()
513 (void)cabsl(x); in test_complex_double()
515 (void)__builtin_abs(x); in test_complex_double()
519 (void)__builtin_labs(x); in test_complex_double()
523 (void)__builtin_llabs(x); in test_complex_double()
528 (void)__builtin_fabsf(x); in test_complex_double()
532 (void)__builtin_fabs(x); in test_complex_double()
536 (void)__builtin_fabsl(x); in test_complex_double()
541 (void)__builtin_cabsf(x); in test_complex_double()
545 (void)__builtin_cabs(x); in test_complex_double()
546 (void)__builtin_cabsl(x); in test_complex_double()
549 void test_complex_long_double(_Complex long double x) { in test_complex_long_double() argument
550 (void)abs(x); in test_complex_long_double()
554 (void)labs(x); in test_complex_long_double()
558 (void)llabs(x); in test_complex_long_double()
563 (void)fabsf(x); in test_complex_long_double()
567 (void)fabs(x); in test_complex_long_double()
571 (void)fabsl(x); in test_complex_long_double()
576 (void)cabsf(x); in test_complex_long_double()
580 (void)cabs(x); in test_complex_long_double()
584 (void)cabsl(x); in test_complex_long_double()
586 (void)__builtin_abs(x); in test_complex_long_double()
590 (void)__builtin_labs(x); in test_complex_long_double()
594 (void)__builtin_llabs(x); in test_complex_long_double()
599 (void)__builtin_fabsf(x); in test_complex_long_double()
603 (void)__builtin_fabs(x); in test_complex_long_double()
607 (void)__builtin_fabsl(x); in test_complex_long_double()
612 (void)__builtin_cabsf(x); in test_complex_long_double()
616 (void)__builtin_cabs(x); in test_complex_long_double()
620 (void)__builtin_cabsl(x); in test_complex_long_double()
623 void test_unsigned_int(unsigned int x) { in test_unsigned_int() argument
624 (void)abs(x); in test_unsigned_int()
628 (void)labs(x); in test_unsigned_int()
632 (void)llabs(x); in test_unsigned_int()
637 (void)fabsf(x); in test_unsigned_int()
641 (void)fabs(x); in test_unsigned_int()
645 (void)fabsl(x); in test_unsigned_int()
650 (void)cabsf(x); in test_unsigned_int()
654 (void)cabs(x); in test_unsigned_int()
658 (void)cabsl(x); in test_unsigned_int()
663 (void)__builtin_abs(x); in test_unsigned_int()
667 (void)__builtin_labs(x); in test_unsigned_int()
671 (void)__builtin_llabs(x); in test_unsigned_int()
676 (void)__builtin_fabsf(x); in test_unsigned_int()
680 (void)__builtin_fabs(x); in test_unsigned_int()
684 (void)__builtin_fabsl(x); in test_unsigned_int()
689 (void)__builtin_cabsf(x); in test_unsigned_int()
693 (void)__builtin_cabs(x); in test_unsigned_int()
697 (void)__builtin_cabsl(x); in test_unsigned_int()
703 void test_unsigned_long(unsigned long x) { in test_unsigned_long() argument
704 (void)abs(x); in test_unsigned_long()
708 (void)labs(x); in test_unsigned_long()
712 (void)llabs(x); in test_unsigned_long()
717 (void)fabsf(x); in test_unsigned_long()
721 (void)fabs(x); in test_unsigned_long()
725 (void)fabsl(x); in test_unsigned_long()
730 (void)cabsf(x); in test_unsigned_long()
734 (void)cabs(x); in test_unsigned_long()
738 (void)cabsl(x); in test_unsigned_long()
743 (void)__builtin_abs(x); in test_unsigned_long()
747 (void)__builtin_labs(x); in test_unsigned_long()
751 (void)__builtin_llabs(x); in test_unsigned_long()
756 (void)__builtin_fabsf(x); in test_unsigned_long()
760 (void)__builtin_fabs(x); in test_unsigned_long()
764 (void)__builtin_fabsl(x); in test_unsigned_long()
769 (void)__builtin_cabsf(x); in test_unsigned_long()
773 (void)__builtin_cabs(x); in test_unsigned_long()
777 (void)__builtin_cabsl(x); in test_unsigned_long()
791 long long test_void_pointer(void *x) { in test_void_pointer() argument
792 return llabs(x); in test_void_pointer()