Home
last modified time | relevance | path

Searched defs:sqrt (Results 1 – 20 of 20) sorted by relevance

/llvm-project/libcxx/include/__math/
H A Droots.h26 inline _LIBCPP_HIDE_FROM_ABI float sqrt(float __x) _NOEXCEPT { return __builtin_sqrtf(__x); } in sqrt() function
29 _LIBCPP_HIDE_FROM_ABI double sqrt(double __x) _NOEXCEPT { in sqrt() function
33 inline _LIBCPP_HIDE_FROM_ABI long double sqrt(long double __x) _NOEXCEPT { return __builtin_sqrtl(__x); } in sqrt() function
36 inline _LIBCPP_HIDE_FROM_ABI double sqrt(_A1 __x) _NOEXCEPT { in sqrt() function
/llvm-project/clang/test/CodeGen/
H A Darm-vfp-asm-constraint.c22 double sqrt(double x) { // CHECK-LABEL: @sqrt( in sqrt() function
/llvm-project/libc/src/__support/FPUtil/generic/
H A Dsqrt_80_bit_long_double.h38 LIBC_INLINE long double sqrt(long double x) { sqrt() function
[all...]
/llvm-project/mlir/lib/Conversion/MathToLLVM/
H A DMathToLLVM.cpp255 auto sqrt = rewriter.create<LLVM::SqrtOp>(loc, adaptor.getOperand(), in matchAndRewrite() local
276 auto sqrt = rewriter.create<LLVM::SqrtOp>( in matchAndRewrite() local
/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h121 __DEVICE__ std::complex<_Tp> sqrt(const std::complex<_Tp> &__x) { sqrt() function
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-std-numbers.cpp10 auto sqrt(T val) { return sqrt(static_cast<double>(val)); } in sqrt() function
/llvm-project/mlir/include/mlir/Dialect/Linalg/IR/
H A DLinalgNamedStructuredOps.yaml378 name: sqrt play
/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h174 __DEVICE__ float sqrt(float __x) { return ::sqrtf(__x); } in sqrt() function
H A D__clang_cuda_math.h313 __DEVICE__ double sqrt(double __a) { return __nv_sqrt(__a); } sqrt() function
H A Dtgmath.h520 #define sqrt(__x) __tg_sqrt(__tg_promote1((__x))(__x)) macro
/llvm-project/mlir/lib/Dialect/Math/Transforms/
H A DExpandPatterns.cpp164 Value sqrt = b.create<math::SqrtOp>(fma); in convertAsinhOp() local
180 Value sqrt = b.create<math::SqrtOp>(fma); in convertAcoshOp() local
/llvm-project/mlir/lib/Conversion/ComplexToStandard/
H A DComplexToStandard.cpp30 enum class AbsFn { abs, sqrt, rsqrt }; enumerator
62 Value sqrt = b.create<math::SqrtOp>(max, fmfWithNaNInf); in computeAbs() local
66 Value sqrt = b.create<math::SqrtOp>(ratioSqPlusOne, fmfWithNaNInf); in computeAbs() local
[all...]
/llvm-project/flang/lib/Evaluate/
H A Dreal.cpp394 auto sqrt{sum.value.SQRT()}; HYPOT() local
/llvm-project/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp58 Ambiguous sqrt(Ambiguous){ return Ambiguous(); } sqrt() function
[all...]
/llvm-project/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp58 Ambiguous sqrt(Ambiguous){ return Ambiguous(); } in sqrt() function
/llvm-project/libc/utils/MPFRWrapper/
H A DMPFRUtils.cpp505 MPFRNumber sqrt() const { sqrt() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber
/llvm-project/mlir/python/mlir/dialects/linalg/opdsl/lang/
H A Dcomprehension.py296 sqrt = UnaryFnType("sqrt") global() variable in UnaryFn
/llvm-project/mlir/lib/Conversion/SPIRVToLLVM/
H A DSPIRVToLLVM.cpp949 Value sqrt = rewriter.create<LLVM::SqrtOp>(loc, dstType, op.getOperand()); matchAndRewrite() local
/llvm-project/llvm/lib/Support/
H A DAPInt.cpp1169 APInt APInt::sqrt() const { sqrt() function in APInt
/llvm-project/mlir/python/mlir/dialects/linalg/opdsl/ops/
H A Dcore_named_ops.py124 def sqrt( global() function