| /freebsd-9-stable/contrib/gcclibs/libiberty/config/ |
| D | mh-aix | 4 # Most releases of AIX 3.1 include an incorrect internal version of copysign 6 # version of copysign in libm.a is usable. For the sake of libg++ (which 7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX 9 EXTRA_OFILES = copysign.o
|
| /freebsd-9-stable/contrib/libc++/include/ |
| D | complex | 604 __a = copysign(isinf(__a) ? _Tp(1) : _Tp(0), __a); 605 __b = copysign(isinf(__b) ? _Tp(1) : _Tp(0), __b); 607 __c = copysign(_Tp(0), __c); 609 __d = copysign(_Tp(0), __d); 614 __c = copysign(isinf(__c) ? _Tp(1) : _Tp(0), __c); 615 __d = copysign(isinf(__d) ? _Tp(1) : _Tp(0), __d); 617 __a = copysign(_Tp(0), __a); 619 __b = copysign(_Tp(0), __b); 626 __a = copysign(_Tp(0), __a); 628 __b = copysign(_Tp(0), __b); [all …]
|
| D | cmath | 172 floating_point copysign (arithmetic x, arithmetic y); 1107 // copysign 1109 using ::copysign; 1112 inline _LIBCPP_INLINE_VISIBILITY float copysign(float __lcpp_x, float __lcpp_y) _NOEXCEPT … 1113 inline _LIBCPP_INLINE_VISIBILITY long double copysign(long double __lcpp_x, long double __lcpp_y) _… 1123 copysign(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT 1128 return copysign((__result_type)__lcpp_x, (__result_type)__lcpp_y);
|
| /freebsd-9-stable/lib/msun/src/ |
| D | s_scalbn.c | 51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */ in scalbn() 56 return huge*copysign(huge,x); /*overflow*/ in scalbn() 57 else return tiny*copysign(tiny,x); /*underflow*/ in scalbn()
|
| D | s_csqrt.c | 76 return (cpack(fabs(b - b), copysign(a, b))); in csqrt() 78 return (cpack(a, copysign(b - b, b))); in csqrt() 100 result = cpack(fabs(b) / (2 * t), copysign(t, b)); in csqrt()
|
| D | s_scalbnl.c | 64 return huge*copysign(huge,x); /*overflow*/ in scalbnl() 65 else return tiny*copysign(tiny,x); /*underflow*/ in scalbnl()
|
| D | s_copysign.c | 26 copysign(double x, double y) in copysign() function
|
| D | s_cproj.c | 42 return (cpack(INFINITY, copysign(0.0, cimag(z)))); in cproj()
|
| D | s_fma.c | 238 zs = copysign(DBL_MIN, zs); in fma()
|
| /freebsd-9-stable/lib/msun/i387/ |
| D | s_copysign.S | 39 ENTRY(copysign) 48 END(copysign)
|
| /freebsd-9-stable/tools/regression/lib/msun/ |
| D | test-next.c | 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, nextafter##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() 103 test##prec(copysign##prec(1.0, nexttoward##prec(-0.0, 0.0)), 1.0, 0) in main()
|
| /freebsd-9-stable/contrib/gcclibs/libiberty/ |
| D | copysign.c | 135 copysign (double x, double y) in copysign() function 147 copysign (double x, double y) in copysign() function
|
| /freebsd-9-stable/contrib/binutils/libiberty/ |
| D | copysign.c | 135 copysign (double x, double y) in copysign() function 147 copysign (double x, double y) in copysign() function
|
| /freebsd-9-stable/lib/msun/bsdsrc/ |
| D | b_exp.c | 103 k=invln2*x+copysign(0.5,x); /* k=NINT(x/ln2) */ 148 k = z + copysign(.5, x);
|
| /freebsd-9-stable/contrib/libstdc++/libmath/ |
| D | copysignf.c | 38 return copysign (x, y); in copysignf()
|
| /freebsd-9-stable/lib/msun/ |
| D | Makefile | 130 cimag.3 copysign.3 cos.3 cosh.3 csqrt.3 erf.3 exp.3 fabs.3 fdim.3 \ 153 MLINKS+=copysign.3 copysignf.3 copysign.3 copysignl.3
|
| D | Symbol.map | 76 copysign;
|
| /freebsd-9-stable/contrib/llvm/include/llvm/Target/ |
| D | TargetLibraryInfo.h | 171 copysign, enumerator 699 case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl: in hasOptimizedCodeGen()
|
| /freebsd-9-stable/contrib/libstdc++/include/tr1/ |
| D | cmath | 55 #undef copysign 179 using ::copysign; 424 copysign(float __x, float __y) 428 copysign(long double __x, long double __y) 433 copysign(_Tp __x, _Up __y) 436 return copysign(__type(__x), __type(__y));
|
| D | math.h | 50 using std::tr1::copysign;
|
| /freebsd-9-stable/include/ |
| D | tgmath.h | 165 #define copysign(x, y) __tg_simple2(x, y, copysign) macro
|
| /freebsd-9-stable/contrib/llvm/lib/Target/PowerPC/ |
| D | PPCCTRLoops.cpp | 263 case Intrinsic::copysign: in mightUseCTR() 298 case LibFunc::copysign: in mightUseCTR()
|
| /freebsd-9-stable/tools/regression/include/tgmath/ |
| D | tgmath.c | 107 TGMACRO_REAL_REAL(copysign) in TGMACRO_REAL() 488 PASS_REAL_REAL_ARG_REAL_RET(copysign)); in main()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Headers/ |
| D | tgmath.h | 618 __tg_copysign(double __x, double __y) {return copysign(__x, __y);} in __tg_copysign() 624 #undef copysign 625 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ macro
|
| /freebsd-9-stable/gnu/lib/libstdc++/ |
| D | config.h | 836 # define copysign _copysign macro
|