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

12

/freebsd-10.0-release/lib/msun/sparc64/
H A De_sqrtf.S30 ENTRY(sqrtf) function
33 END(sqrtf)
/freebsd-10.0-release/lib/msun/amd64/
H A De_sqrtf.S30 ENTRY(sqrtf) function
33 END(sqrtf)
/freebsd-10.0-release/lib/msun/i387/
H A De_sqrtf.S11 ENTRY(sqrtf) function
15 END(sqrtf)
/freebsd-10.0-release/lib/msun/src/
H A De_acosf.c59 s = sqrtf(z);
66 s = sqrtf(z);
H A Dcatrigf.c103 *rx = sqrtf(x);
106 *rx = log1pf(Am1 + sqrtf(Am1 * (A + 1)));
108 *rx = x / sqrtf((1 - y) * (1 + y));
110 *rx = log1pf((y - 1) + sqrtf((y - 1) * (y + 1)));
113 *rx = logf(A + sqrtf(A * A - 1));
131 *sqrt_A2my2 = sqrtf(x) * sqrtf((A + y) / 2);
134 *sqrt_A2my2 = sqrtf(Amy * (A + y));
137 sqrtf((y + 1) * (y - 1));
140 *sqrt_A2my2 = sqrtf((
[all...]
H A Ds_ctanhf.c72 rho = sqrtf(1 + s * s);
H A De_j0f.c65 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
68 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x);
139 if(ix>0x80000000) z = (invsqrtpi*ss)/sqrtf(x);
142 z = invsqrtpi*(u*ss+v*cc)/sqrtf(x);
H A De_j1f.c66 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
69 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
132 if(ix>0x48000000) z = (invsqrtpi*ss)/sqrtf(x);
135 z = invsqrtpi*(u*ss+v*cc)/sqrtf(x);
H A Dmath.h371 float sqrtf(float);
H A Dmath_private.h698 #define __ieee754_sqrtf sqrtf
/freebsd-10.0-release/contrib/libstdc++/libmath/
H A Dstubs.c243 sqrtf(float x) function
267 return s * sqrtf(x * x + y * y);
H A Dmathconf.h294 # define sqrtf(x) sqrt (x) macro
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h490 /// float sqrtf(float x);
491 sqrtf, enumerator in enum:llvm::LibFunc::Func
679 case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl:
/freebsd-10.0-release/lib/msun/
H A DSymbol.map60 sqrtf;
H A DMakefile212 MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 cbrtl.3 sqrt.3 sqrtf.3 \
/freebsd-10.0-release/gnu/lib/libstdc++/
H A Dconfig.h292 /* Define to 1 if you have the `sqrtf' function. */
1076 # define sqrtf _sqrtf macro
/freebsd-10.0-release/contrib/llvm/lib/Target/
H A DTargetLibraryInfo.cpp259 "sqrtf",
461 TLI.setUnavailable(LibFunc::sqrtf);
/freebsd-10.0-release/contrib/libstdc++/config/abi/pre/
H A Dgnu.ver504 sqrtf;
/freebsd-10.0-release/contrib/libstdc++/
H A Dconfig.h.in286 /* Define to 1 if you have the `sqrtf' function. */
1058 # define sqrtf _sqrtf
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h504 __tg_sqrt(float __x) {return sqrtf(__x);}
/freebsd-10.0-release/contrib/gcc/
H A Dsys-protos.h1061 extern float sqrtf(float);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp1192 Name == "sinf" || Name == "sqrtf";
1399 else if (Name == "sqrtf" && V >= 0 && TLI->has(LibFunc::sqrtf))
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1241 // Fold (fptrunc (sqrt (fpext x))) -> (sqrtf x)
1243 if (Call && Call->getCalledFunction() && TLI->has(LibFunc::sqrtf) &&
1255 Constant *SqrtfFunc = M->getOrInsertFunction("sqrtf",
/freebsd-10.0-release/usr.sbin/moused/
H A Dmoused.c996 length = sqrtf((fdx * fdx) + (fdy * fdy)); /* Pythagoras */
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5588 case LibFunc::sqrtf:

Completed in 320 milliseconds

12