Searched refs:cosf (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-10.3-release/lib/msun/src/
H A Ds_ccoshf.c60 return (CMPLXF(coshf(x) * cosf(y), sinhf(x) * sinf(y)));
66 return (CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y)));
74 return (CMPLXF(h * h * cosf(y), h * sinf(y)));
90 return (CMPLXF(INFINITY * cosf(y), x * sinf(y)));
H A Ds_csinhf.c60 return (CMPLXF(sinhf(x) * cosf(y), coshf(x) * sinf(y)));
66 return (CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y)));
74 return (CMPLXF(h * cosf(y), h * h * sinf(y)));
90 return (CMPLXF(x * cosf(y), INFINITY * sinf(y)));
H A Ds_cexpf.c57 return (CMPLXF(cosf(y), sinf(y)));
87 return (CMPLXF(exp_x * cosf(y), exp_x * sinf(y)));
H A Ds_ctanhf.c58 copysignf(0, isinf(y) ? y : sinf(y) * cosf(y))));
67 4 * sinf(y) * cosf(y) * exp_mx * exp_mx));
H A Dk_expf.c85 return (CMPLXF(cosf(y) * exp_x * scale1 * scale2,
H A Ds_cosf.c39 cosf(float x) function
H A De_j0f.c59 c = cosf(x);
63 z = -cosf(x+x);
132 c = cosf(x);
140 z = -cosf(x+x);
H A De_j1f.c60 c = cosf(y);
64 z = cosf(y+y);
118 c = cosf(x);
122 z = cosf(x+x);
H A Dmath.h350 float cosf(float);
/freebsd-10.3-release/contrib/netbsd-tests/lib/libm/
H A Dt_cos.c147 * cosf(3)
166 if (fabsf(cosf(x) - y) > eps)
167 atf_tc_fail_nonfatal("cosf(%d deg) != %0.01f",
175 atf_tc_set_md_var(tc, "descr", "Test cosf(NaN) == NaN");
183 ATF_CHECK(isnan(cosf(x)) != 0);
189 atf_tc_set_md_var(tc, "descr", "Test cosf(-Inf) == NaN");
196 if (isnan(cosf(x)) == 0) {
198 atf_tc_fail("cosf(-Inf) != NaN");
205 atf_tc_set_md_var(tc, "descr", "Test cosf(+Inf) == NaN");
212 if (isnan(cosf(
[all...]
/freebsd-10.3-release/lib/msun/tests/
H A Dtrig_test.c160 assert(cosf(f_pi_odd[i]) == -1.0);
164 assert(cosf(-f_pi_odd[i]) == -1.0);
168 assert(cosf(f_pi_odd[i] * 2) == 1.0);
172 assert(cosf(-f_pi_odd[i] * 2) == 1.0);
H A Dctrig_test.c321 copysign(0, cosf(nums[i]))), FLT_ULP());
322 test_even_tol(ccosf, z, CMPLXL(cosf(nums[i]),
337 test_odd_tol(csinhf, z, CMPLXL(copysign(0, cosf(nums[i])),
339 test_even_tol(ccoshf, z, CMPLXL(cosf(nums[i]),
H A Dcexp_test.c224 CMPLXL(cosf(finites[i]), sinf(finites[i])),
227 CMPLXL(cosf(finites[i]), sinf(finites[i])),
/freebsd-10.3-release/contrib/libstdc++/libmath/
H A Dmathconf.h270 # define cosf(x) cos (x) macro
H A Dstubs.c141 cosf(float x) function
/freebsd-10.3-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h178 /// float cosf(float x);
179 cosf, enumerator in enum:llvm::LibFunc::Func
702 case LibFunc::cos: case LibFunc::cosf: case LibFunc::cosl:
/freebsd-10.3-release/gnu/lib/libstdc++/
H A Dconfig.h51 /* Define to 1 if you have the `cosf' function. */
846 # define cosf _cosf macro
/freebsd-10.3-release/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp105 "cosf",
491 TLI.setUnavailable(LibFunc::cosf);
/freebsd-10.3-release/lib/msun/
H A DMakefile167 MLINKS+=cos.3 cosf.3 cos.3 cosl.3
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h241 __tg_cos(float __x) {return cosf(__x);}
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1115 TLI->has(LibFunc::cosf)) {
2063 case LibFunc::cosf:
/freebsd-10.3-release/contrib/gcc/
H A Dsys-protos.h194 extern float cosf(float);
/freebsd-10.3-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp1230 return Name == "cos" || Name == "ceil" || Name == "cosf" || Name == "cosh";
1410 else if (Name == "cosf" && TLI->has(LibFunc::cosf))
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1940 case LibFunc::cosf:
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5905 case LibFunc::cosf:

Completed in 163 milliseconds

12