| /freebsd-14.2/contrib/arm-optimized-routines/pl/math/test/testcases/directed/ |
| H A D | sinhf.tst | 1 ; sinhf.tst 6 func=sinhf op1=7fc00001 result=7fc00001 errno=0 7 func=sinhf op1=ffc00001 result=7fc00001 errno=0 8 func=sinhf op1=7f800001 result=7fc00001 errno=0 status=i 9 func=sinhf op1=ff800001 result=7fc00001 errno=0 status=i 10 func=sinhf op1=7f800000 result=7f800000 errno=0 11 func=sinhf op1=7f7fffff result=7f800000 errno=ERANGE status=ox 12 func=sinhf op1=ff800000 result=ff800000 errno=0 13 func=sinhf op1=ff7fffff result=ff800000 errno=ERANGE status=ox 14 func=sinhf op1=00000000 result=00000000 errno=0 [all …]
|
| /freebsd-14.2/contrib/arm-optimized-routines/pl/math/ |
| H A D | sinhf_2u3.c | 29 sinhf (float x) in sinhf() function 70 PL_TEST_ULP (sinhf, 1.76) 71 PL_TEST_SYM_INTERVAL (sinhf, 0, 0x1.62e43p+6, 100000) 72 PL_TEST_SYM_INTERVAL (sinhf, 0x1.62e43p+6, 0x1.65a9fap+6, 100) 73 PL_TEST_SYM_INTERVAL (sinhf, 0x1.65a9fap+6, inf, 100)
|
| H A D | sv_sinhf_2u3.c | 28 return sv_call_f32 (sinhf, x, y, pg); in special_case()
|
| H A D | v_sinhf_2u3.c | 40 return v_call_f32 (sinhf, x, y, special); in special_case()
|
| /freebsd-14.2/contrib/netbsd-tests/lib/libm/ |
| H A D | t_sinh.c | 172 if (!(fabsf((sinhf(x) - sinh_x)/sinh_x) <= eps)) { in ATF_TC_BODY() 174 (double)x, (double)sinhf(x), (double)sinh_x); in ATF_TC_BODY() 190 ATF_CHECK(isnan(sinhf(x)) != 0); in ATF_TC_BODY() 202 float y = sinhf(x); in ATF_TC_BODY() 217 float y = sinhf(x); in ATF_TC_BODY() 232 float y = sinhf(x); in ATF_TC_BODY() 247 float y = sinhf(x); in ATF_TC_BODY()
|
| /freebsd-14.2/lib/msun/src/ |
| H A D | s_csinhf.c | 57 return (CMPLXF(sinhf(x), y)); in csinhf() 59 return (CMPLXF(sinhf(x) * cosf(y), coshf(x) * sinf(y))); in csinhf()
|
| H A D | e_sinhf.c | 22 sinhf(float x) in sinhf() function
|
| H A D | s_ctanhf.c | 71 s = sinhf(x); in ctanhf()
|
| H A D | s_ccoshf.c | 59 return (CMPLXF(coshf(x) * cosf(y), sinhf(x) * sinf(y))); in ccoshf()
|
| H A D | math.h | 345 float sinhf(float);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | explicit_symbols.inc | 88 INLINE_DEF_FLOAT_SYMBOL(sinhf, 1)
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ScalarFuncs.def | 103 TLI_DEFINE_SCALAR_MASS_FUNC("sinhf", "__xl_sinhf")
|
| H A D | VecFuncs.def | 62 TLI_DEFINE_VECFUNC("sinhf", "vsinhf", FIXED(4), "_ZGV_LLVM_N4v") 111 TLI_DEFINE_VECFUNC("sinhf", "_simd_sinh_f4", FIXED(4), "_ZGV_LLVM_N4v") 263 TLI_DEFINE_VECFUNC("sinhf", "__sinhf4", FIXED(4), "_ZGV_LLVM_N4v") 653 TLI_DEFINE_VECFUNC("sinhf", "_ZGVnN4v_sinhf", FIXED(4), "_ZGV_LLVM_N4v") 797 TLI_DEFINE_VECFUNC("sinhf", "_ZGVsMxv_sinhf", SCALABLE(4), MASKED, "_ZGVsMxv") 1041 TLI_DEFINE_VECFUNC("sinhf", "armpl_vsinhq_f32", FIXED(4), NOMASK, "_ZGV_LLVM_N4v") 1043 TLI_DEFINE_VECFUNC("sinhf", "armpl_svsinh_f32_x", SCALABLE(4), MASKED, "_ZGVsMxv")
|
| /freebsd-14.2/lib/msun/ |
| H A D | Symbol.map | 57 sinhf;
|
| H A D | Makefile | 267 MLINKS+=sinh.3 sinhf.3 sinh.3 sinhl.3
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_cmath.h | 173 __DEVICE__ float sinh(float __x) { return ::sinhf(__x); } in sinh() 492 using ::sinhf;
|
| H A D | __clang_hip_cmath.h | 780 using ::sinhf; 830 return sinhf(x) * y;
|
| H A D | __clang_cuda_math.h | 310 __DEVICE__ float sinhf(float __a) { return __nv_sinhf(__a); } in sinhf() function
|
| H A D | tgmath.h | 350 __tg_sinh(float __x) {return sinhf(__x);} in __tg_sinh()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std.compat/ |
| H A D | cmath.inc | 59 using ::sinhf;
|
| /freebsd-14.2/lib/msun/tests/ |
| H A D | ctrig_test.c | 325 test_odd_tol(csinhf, z, CMPLXL(sinhf(nums[i]), 0), FLT_ULP()); in ATF_TC_BODY() 354 test_odd_tol(csinf, z, CMPLXL(0, sinhf(nums[i])), FLT_ULP()); in ATF_TC_BODY()
|
| /freebsd-14.2/contrib/arm-optimized-routines/pl/math/include/ |
| H A D | mathlib.h | 28 float sinhf (float);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/ |
| H A D | cmath | 122 __DEVICE__ float sinh(float __x) { return ::sinhf(__x); }
|
| /freebsd-14.2/contrib/llvm-project/libcxx/modules/std/ |
| H A D | cmath.inc | 60 using std::sinhf;
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | cmath | 122 float sinhf(float x); 402 using ::sinhf _LIBCPP_USING_IF_EXISTS;
|