Searched refs:sqrt (Results 101 - 125 of 146) sorted by relevance

123456

/openbsd-current/gnu/usr.bin/perl/lib/B/
H A DDeparse-core.t652 sqrt 01 $
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dtie_fetch_count.t120 $dummy = sqrt $var ; check_count 'sqrt';
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dexport.t150 read readdir rename rewinddir rmdir sin sleep sprintf sqrt
/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dvalarray_before.h162 { return sqrt(__t); }
H A Dvalarray_after.h459 _DEFINE_EXPR_UNARY_FUNCTION(sqrt)
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_math.h313 __DEVICE__ double sqrt(double __a) { return __nv_sqrt(__a); } function
H A D__clang_hip_math.h1082 double sqrt(double __x) { return __ocml_sqrt_f64(__x); } function
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp373 case Intrinsic::sqrt: {
374 ReplaceFPIntrinsicWithCall(CI, "sqrtf", "sqrt", "sqrtl");
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp140 std::min(Files.size(), (size_t)sqrt(Files.size() + 2))) {
/openbsd-current/games/phantasia/
H A Dmain.c88 / fabs(), rollnewplayer(), time(), exit(), sqrt(), floor(), wmove(),
229 dtemp = sqrt(dtemp / 100.0);
H A Dfight.c795 / MODULES CALLED: hitmonster(), cancelmonster(), sqrt(), floor(), wmove(),
896 inflict = dtemp * ROLL(15.0, sqrt(Player.p_magiclvl / 3.0 + 1.0));
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dvalarray_meta.h145 _Tp operator()(const _Tp& __t) const { return sqrt(__t); }
1047 _DEFINE_EXPR_UNARY_FUNCTION(sqrt)
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp1158 // the libc sqrt function is called. The result is rounded and then converted
1161 APInt APInt::sqrt() const {
1167 // rounding errors in libc sqrt for small values.
1183 // libc sqrt function which will probably use a hardware sqrt computation.
1187 uint64_t(::round(::sqrt(double(isSingleWord() ? U.VAL
1227 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation");
2900 APInt SQ = D.sqrt();
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920428-2.c17 double sqrt(double x);
/openbsd-current/games/snake/
H A Dsnake.c572 v1 = sqrt((double)(d.col * d.col + d.line * d.line) );
/openbsd-current/gnu/llvm/llvm/lib/Transforms/AggressiveInstCombine/
H A DAggressiveInstCombine.cpp401 /// Try to replace a mathlib call to sqrt with the LLVM intrinsic. This avoids
406 // Match a call to sqrt mathlib function.
419 // If (1) this is a sqrt libcall, (2) we can assume that NAN is not created
433 Function *Sqrt = Intrinsic::getDeclaration(M, Intrinsic::sqrt, Ty);
434 Value *NewSqrt = Builder.CreateCall(Sqrt, Arg, "sqrt");
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DConstantFolding.cpp1567 case Intrinsic::sqrt:
1695 Name == "sqrt" || Name == "sqrtf";
2216 case Intrinsic::sqrt:
2217 return ConstantFoldFP(sqrt, APF, Ty);
2373 return ConstantFoldFP(sqrt, APF, Ty);
H A DValueTracking.cpp3508 return Intrinsic::sqrt;
3544 // sqrt(-0.0) = -0.0, no other negative results are possible.
3545 case Intrinsic::sqrt:
3716 case Intrinsic::sqrt:
3717 // sqrt(x) is always >= -0 or NaN. Moreover, sqrt(x) == -0 iff x == -0.
3823 case Intrinsic::sqrt:
3966 case Intrinsic::sqrt:
5289 case Intrinsic::sqrt:
/openbsd-current/usr.bin/rsync/
H A Duploader.c119 v = sqrt(sz);
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1771 // cabs(z) -> sqrt((creal(z)*creal(z)) + (cimag(z)*cimag(z)))
1795 Function *FSqrt = Intrinsic::getDeclaration(CI->getModule(), Intrinsic::sqrt,
2019 // If errno is never set, then use the intrinsic for sqrt().
2022 Intrinsic::getDeclaration(M, Intrinsic::sqrt, V->getType());
2023 return B.CreateCall(SqrtFn, V, "sqrt");
2026 // Otherwise, use the libcall for sqrt().
2029 // TODO: We also should check that the target can in fact lower the sqrt()
2031 // the target has a sqrt() libcall, which is not exactly the same.
2049 // Converting pow(X, -0.5) to 1/sqrt(X) may introduce an extra rounding step,
2057 // errno), but sqrt(
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dsys-protos.h1060 extern double sqrt(double);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dsys-protos.h1060 extern double sqrt(double);
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dgdbremote.py1298 std_dev = math.sqrt(accum / (count - 1))
/openbsd-current/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCLoopInstrFormPrep.cpp499 // The number of chains should be sqrt(EleNum).
501 ChainNum = (unsigned)sqrt((double)EleNum);
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h1729 APInt sqrt() const;

Completed in 321 milliseconds

123456