Lines Matching refs:abs
5 int abs(int);
21 int abs(int);
22 long int abs(long int);
23 long long int abs(long long int);
26 float abs(float);
27 double abs(double);
28 long double abs(long double);
31 double abs(T);
36 (void)std::abs(x); in test_int()
38 (void)abs(x); in test_int()
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()
165 (void)std::abs(x); in test_long_long()
167 (void)abs(x); in test_long_long()
241 (void)std::abs(x); in test_float()
243 (void)abs(x); in test_float()
305 (void)std::abs(x); in test_double()
307 (void)abs(x); in test_double()
375 (void)std::abs(x); in test_long_double()
377 (void)abs(x); in test_long_double()
451 (void)abs(x); in test_complex_float()
513 (void)abs(x); in test_complex_double()
581 (void)abs(x); in test_complex_long_double()
655 (void)std::abs(x); in test_unsigned_int()
660 (void)abs(x); in test_unsigned_int()
740 (void)std::abs(x); in test_unsigned_long()
745 (void)abs(x); in test_unsigned_long()