Searched refs:logb (Results 1 - 25 of 98) sorted by path

1234

/netbsd-current/external/gpl3/gcc/dist/gcc/config/m68k/
H A Dmath-68881.h470 logb (double x) function
/netbsd-current/include/
H A Dtgmath.h173 #define logb(a) __TG_FN1(logb, (a)) macro
/netbsd-current/lib/libm/arch/i387/
H A Ds_logb.S12 ENTRY(logb)
/netbsd-current/lib/libm/arch/mc68881/
H A Ds_logb.S43 | logb(x)
45 | except that logb(0) is -INF, logb(INF) is +INF, and logb(NAN) is that NAN.
46 ENTRY(logb)
/netbsd-current/lib/libm/noieee_src/
H A Dn_atan2.c44 * logb(x)
215 if((m=(k=logb(y))-logb(x)) > 60) t=big+big;
H A Dn_cabs.c122 exp= logb(x);
123 if(exp-(int)logb(y) > ibig )
206 exp= logb(x);
208 if(exp-(int)logb(y) > ibig )
H A Dn_log.c402 m = logb(x);
405 j = logb(g), m += j;
458 m = logb(x);
461 j = logb(g), m += j;
H A Dn_log1p.c46 * logb(x)
131 k=logb(one+x); z=scalb(x,-k); t=scalb(one,-k);
H A Dn_support.c60 * (c) logb(x)
62 * double precision, except that logb(0) is -INF, logb(INF)
63 * is +INF, and logb(NAN) is that NAN.
148 logb(double x) function
297 n=logb(x);
299 if((m=logb(x))!=0) x=scalb(x,-m); /* subnormal number */
/netbsd-current/lib/libm/src/
H A Db_log.c378 m = logb(x);
381 j = logb(g), m += j;
H A Ds_logb.c19 * double logb(x)
20 * IEEE 754 logb. Included to pass IEEE test suite. Not recommend.
28 __strong_alias(logbl,logb)
32 logb(double x)
39 if((ix>>=20)==0) /* IEEE 754 logb */
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dint_math.h97 #define crt_logb(x) logb((x))
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGBuiltin.cpp2127 MUTATE_LDBL(logb)
/netbsd-current/external/apache2/llvm/dist/clang/lib/Headers/
H A D__clang_cuda_cmath.h282 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, logb)
412 using ::logb;
H A D__clang_cuda_complex_builtins.h42 #define _LOGBd std::logb
43 #define _LOGBf std::logb
H A D__clang_cuda_math.h178 __DEVICE__ double logb(double __a) { return __nv_logb(__a); } function
H A D__clang_cuda_math_forward_declares.h130 __DEVICE__ double logb(double);
131 __DEVICE__ float logb(float);
248 using ::logb;
H A D__clang_hip_cmath.h181 __DEF_FUN1(float, logb)
468 __HIP_OVERLOAD1(double, logb)
635 using ::logb;
H A D__clang_hip_math.h866 double logb(double __x) { return __ocml_logb_f64(__x); } function
H A Dopencl-c.h7752 float __ovld __cnfn logb(float x);
7753 float2 __ovld __cnfn logb(float2 x);
7754 float3 __ovld __cnfn logb(float3 x);
7755 float4 __ovld __cnfn logb(float4 x);
7756 float8 __ovld __cnfn logb(float8 x);
7757 float16 __ovld __cnfn logb(float16 x);
7759 double __ovld __cnfn logb(double x);
7760 double2 __ovld __cnfn logb(double2 x);
7761 double3 __ovld __cnfn logb(double3 x);
7762 double4 __ovld __cnfn logb(double
[all...]
H A Dtgmath.h972 // logb
980 __tg_logb(double __x) {return logb(__x);}
986 #undef logb macro
987 #define logb(__x) __tg_logb(__tg_promote1((__x))(__x)) macro
/netbsd-current/external/apache2/llvm/dist/libcxx/include/
H A Dmath.h232 floating_point logb (arithmetic x);
1427 // logb
1429 inline _LIBCPP_INLINE_VISIBILITY float logb(float __lcpp_x) _NOEXCEPT {return ::logbf(__lcpp_x);}
1430 inline _LIBCPP_INLINE_VISIBILITY long double logb(long double __lcpp_x) _NOEXCEPT {return ::logbl(__lcpp_x);}
1435 logb(_A1 __lcpp_x) _NOEXCEPT {return ::logb((double)__lcpp_x);}
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/m68k/
H A Dmath-68881.h470 logb (double x) function
/netbsd-current/external/gpl3/gcc.old/dist/gcc/cp/
H A Dcfns.h687 {"logb", 99},
/netbsd-current/external/gpl3/gcc.old/dist/gcc/ginclude/
H A Dtgmath.h104 #define logb(x) __TGMATH_REAL(x, logb) macro

Completed in 607 milliseconds

1234