Searched refs:pow (Results 76 - 100 of 113) sorted by relevance

12345

/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dvalarray_before.h334 { return pow(__x, __y); }
H A Dvalarray_after.h548 _DEFINE_EXPR_BINARY_FUNCTION(pow)
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_math.h230 __DEVICE__ double pow(double __a, double __b) { return __nv_pow(__a, __b); } function
H A D__clang_hip_math.h979 double pow(double __x, double __y) { return __ocml_pow_f64(__x, __y); } function
H A Dopencl-c.h8020 float __ovld __cnfn pow(float, float);
8021 float2 __ovld __cnfn pow(float2, float2);
8022 float3 __ovld __cnfn pow(float3, float3);
8023 float4 __ovld __cnfn pow(float4, float4);
8024 float8 __ovld __cnfn pow(float8, float8);
8025 float16 __ovld __cnfn pow(float16, float16);
8027 double __ovld __cnfn pow(double, double);
8028 double2 __ovld __cnfn pow(double2, double2);
8029 double3 __ovld __cnfn pow(double3, double3);
8030 double4 __ovld __cnfn pow(double
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp577 Cost *= std::pow((double)AvgLoopIterationCount, LoopDepth);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp397 case Intrinsic::pow: {
398 ReplaceFPIntrinsicWithCall(CI, "powf", "pow", "powl");
/openbsd-current/gnu/usr.bin/perl/dist/Safe/t/
H A Dsafeops.t154 pow $x ** $y
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dvalarray_meta.h314 { return pow(__x, __y); }
1136 _DEFINE_EXPR_BINARY_FUNCTION(pow)
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dexpmed.c2619 int pow, pow2;
2629 pow = n + lgup;
2632 if (pow == 2 * HOST_BITS_PER_WIDE_INT)
2640 if (pow >= HOST_BITS_PER_WIDE_INT)
2642 nh = (HOST_WIDE_INT) 1 << (pow - HOST_BITS_PER_WIDE_INT);
2648 nl = (unsigned HOST_WIDE_INT) 1 << pow;
2607 int pow, pow2; local
H A Dsys-protos.h836 extern double pow(double, double);
/openbsd-current/gnu/gcc/gcc/
H A Dexpmed.c3282 int pow, pow2;
3291 pow = n + lgup;
3297 gcc_assert (pow != 2 * HOST_BITS_PER_WIDE_INT);
3300 if (pow >= HOST_BITS_PER_WIDE_INT)
3302 nh = (HOST_WIDE_INT) 1 << (pow - HOST_BITS_PER_WIDE_INT);
3308 nl = (unsigned HOST_WIDE_INT) 1 << pow;
3270 int pow, pow2; local
H A Dsys-protos.h836 extern double pow(double, double);
/openbsd-current/games/hack/
H A Dhack.mon.c782 >= 10*pow((unsigned)(ul-1)))
/openbsd-current/games/phantasia/
H A Dfight.c33 / writerecord(), pickmonster(), displaystats(), pow(), cancelmonster(),
170 && drandom() > 0.2 + pow(0.4, (double) (flockcnt / 3 + Circle / 3.0)))
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D920428-2.c16 double pow(double x, double y);
/openbsd-current/gnu/llvm/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h155 // pow
158 std::complex<_Tp> pow(const std::complex<_Tp> &__x, function in namespace:std
163 // __sqr, computes pow(x, 2)
/openbsd-current/gnu/usr.bin/perl/ext/Opcode/
H A DOpcode.pm314 postdec i_postdec int hex oct abs pow multiply i_multiply
/openbsd-current/usr.bin/awk/
H A Drun.c1490 i = errcheck(pow(i, j), "pow");
1500 double ipow(double x, int n) /* x**n. ought to be done by pow, but isn't always */
1587 xf = errcheck(pow(xf, yf), "pow");
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1578 time.sleep(pow(2, i) * 0.25)
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DConstraintElimination.cpp367 int64_t Mult = int64_t(std::pow(int64_t(2), CI->getSExtValue()));
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DVectorUtils.cpp87 case Intrinsic::pow:
H A DValueTracking.cpp3504 return Intrinsic::pow;
3730 // ways that pow can return a negative value:
3732 // pow(x, exp) --> negative if exp is odd and x is negative.
3733 // pow(-0, exp) --> -inf if exp is negative odd.
3734 // pow(-0, exp) --> -0 if exp is positive odd.
3735 // pow(-inf, exp) --> -0 if exp is negative odd.
3736 // pow(-inf, exp) --> -inf if exp is positive odd.
3859 case Intrinsic::pow:
5293 case Intrinsic::pow:
/openbsd-current/sys/dev/ic/
H A Dar9003.c2540 ar9003_get_desired_txgain(struct athn_softc *sc, int chain, int pow) argument
2570 return (pow - delta - tempcorr - voltcorr + scale);
/openbsd-current/gnu/usr.bin/gcc/contrib/
H A Dparanoia.cc922 d1 = pow (d1, d2);

Completed in 599 milliseconds

12345