| /dragonfly/contrib/openbsd_libm/src/ |
| HD | s_copysign.c | 25 copysign(double x, double y) in copysign() function 35 __strong_alias(copysignl, copysign);
|
| HD | s_scalbnl.c | 70 return huge*copysign(huge,x); /*overflow*/ in scalbnl() 71 else return tiny*copysign(tiny,x); /*underflow*/ in scalbnl()
|
| HD | s_cproj.c | 29 __imag__ res = copysign(0.0, __imag__ z); in cproj()
|
| HD | s_cacosh.c | 67 return (CMPLX(fabs(ry), copysign(rx, cimag(z)))); in cacosh()
|
| HD | b_exp__D.c | 96 k = z + copysign(.5, x); in __exp__D()
|
| HD | s_fma.c | 183 p = ldexp(copysign(0x1p-1022, r), -spread); in fma()
|
| /dragonfly/contrib/openbsd_libm/arch/amd64/ |
| HD | s_copysign.S | 14 ENTRY(copysign) 21 END(copysign)
|
| /dragonfly/tools/regression/lib/libm/ |
| HD | test-next.c | 99 test##prec(copysign##prec(1.0, nextafter##prec(0.0, -0.0)), -1.0, 0); \ in main() 100 test##prec(copysign##prec(1.0, nextafter##prec(-0.0, 0.0)), 1.0, 0); \ in main() 101 test##prec(copysign##prec(1.0, nexttoward##prec(0.0, -0.0)), -1.0, 0);\ in main() 102 test##prec(copysign##prec(1.0, nexttoward##prec(-0.0, 0.0)), 1.0, 0) in main()
|
| HD | test-ctrig.c | 394 copysign(0, cos(nums[i]))), 0); in test_axes() 396 -copysign(0, sin(nums[i]))), 0); in test_axes() 401 testall_odd_tol(csinh, z, cpackl(copysign(0, cos(nums[i])), in test_axes() 404 copysign(0, sin(nums[i]))), 0); in test_axes()
|
| HD | test-fenv.c | 530 if (copysign(1.0, d) < 0.0) in getround()
|
| /dragonfly/contrib/gcc-4.7/gcc/ginclude/ |
| HD | tgmath.h | 127 #define copysign(x,y) __TGMATH_REAL_2(x, y, copysign) macro
|
| /dragonfly/contrib/openbsd_libm/include/global/ |
| HD | tgmath.h | 166 #define copysign(x, y) __tg_simple2(x, y, copysign) macro
|
| HD | math.h | 236 double copysign(double, double);
|
| /dragonfly/lib/libm/ |
| HD | Makefile | 138 copysign.3 cos.3 cosh.3 erf.3 exp.3 \ 192 MLINKS+=copysign.3 copysignf.3 \ 193 copysign.3 copysignl.3
|
| HD | Symbol.map | 74 copysign;
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | match.pd | 170 /* Transform (X > 0.0 ? 1.0 : -1.0) into copysign(1, X). */ 171 /* Transform (X >= 0.0 ? 1.0 : -1.0) into copysign(1, X). */ 172 /* Transform (X < 0.0 ? 1.0 : -1.0) into copysign(1,-X). */ 173 /* Transform (X <= 0.0 ? 1.0 : -1.0) into copysign(1,-X). */ 185 /* Transform (X > 0.0 ? -1.0 : 1.0) into copysign(1,-X). */ 186 /* Transform (X >= 0.0 ? -1.0 : 1.0) into copysign(1,-X). */ 187 /* Transform (X < 0.0 ? -1.0 : 1.0) into copysign(1,X). */ 188 /* Transform (X <= 0.0 ? -1.0 : 1.0) into copysign(1,X). */ 201 /* Transform X * copysign (1.0, X) into abs(X). */ 207 /* Transform X * copysign (1.0, -X) into -abs(X). */ [all …]
|
| /dragonfly/contrib/openbsd_libm/ |
| HD | Makefile | 182 copysign.3 cos.3 cosh.3 erf.3 exp.3 \ 234 MLINKS+=copysign.3 copysignf.3 323 MLINKS+=copysign.3 copysignl.3
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/ |
| D | cmath | 50 #undef copysign 177 using ::copysign; 457 using std::copysign; 559 copysign(float __x, float __y) 563 copysign(long double __x, long double __y) 569 copysign(_Tp __x, _Up __y) 572 return copysign(__type(__x), __type(__y));
|
| D | math.h | 45 using std::tr1::copysign;
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_global/ |
| D | cmath | 941 #undef copysign 1060 using ::copysign; 1242 copysign(float __x, float __y) 1246 copysign(long double __x, long double __y) 1251 copysign(_Tp __x, _Up __y) 1254 return copysign(__type(__x), __type(__y));
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/ |
| D | cmath | 51 #undef copysign 176 using ::copysign; 487 copysign(float __x, float __y) 491 copysign(long double __x, long double __y) 496 copysign(_Tp __x, _Up __y) 499 return copysign(__type(__x), __type(__y));
|
| D | math.h | 45 using std::tr1::copysign;
|
| /dragonfly/tools/regression/include/tgmath/ |
| HD | tgmath.c | 107 TGMACRO_REAL_REAL(copysign) in TGMACRO_REAL() 488 PASS_REAL_REAL_ARG_REAL_RET(copysign)); in main()
|
| /dragonfly/gnu/usr.bin/mpfr/ |
| HD | Makefile | 48 copysign.c setsign.c gmp_op.c init2.c acos.c sin_cos.c set_nan.c \
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/c_global/ |
| D | cmath | 968 #undef copysign 1085 using ::copysign; 1286 copysign(float __x, float __y) 1290 copysign(long double __x, long double __y) 1297 copysign(_Tp __x, _Up __y) 1300 return copysign(__type(__x), __type(__y));
|