Searched refs:pow (Results 26 - 50 of 113) sorted by relevance

12345

/openbsd-current/gnu/usr.bin/perl/
H A Doverload.inc143 "(**", /* pow */
H A Dmalloc.c2056 MEM_SIZE require, newarena = nbytes, pow; local
2063 pow = LOG_OF_MIN_ARENA + 1;
2066 pow++;
2067 newarena = (1 << pow) + POW2_OPTIMIZE_SURPLUS(pow * BUCKETS_PER_POW2);
2075 nmalloc[pow * BUCKETS_PER_POW2]++;
2077 if (pow * BUCKETS_PER_POW2 > (MEM_SIZE)max_bucket)
2078 max_bucket = pow * BUCKETS_PER_POW2;
2079 *(cp - M_OVERHEAD) = pow * BUCKETS_PER_POW2; /* Fill index. */
/openbsd-current/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_cmath.h62 #undef pow macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_cmath.h62 #undef pow macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cmath.h73 #undef pow macro
556 using ::pow;
560 pow(float __x, float __y) { return __gnu_cxx::__c99_binding::powf(__x, __y); } function in namespace:std
563 pow(float __x, float __y)
564 { return ::pow(static_cast<double>(__x), static_cast<double>(__y)); }
569 pow(long double __x, long double __y) { return ::powl(__x, __y); } function in namespace:std
572 pow(long double __x, long double __y) function in namespace:std
573 { return ::pow(static_cast<double>(__x), static_cast<double>(__y)); }
577 pow(double __x, int __i) function in namespace:std
581 pow(floa function in namespace:std
585 pow(long double __x, int __n) function in namespace:std
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cmath.h75 #undef pow macro
354 using ::pow;
357 pow(float __x, float __y) function
361 pow(long double __x, long double __y) function
365 pow(double __x, int __i) function
369 pow(float __x, int __n) function
373 pow(long double __x, int __n) function
/openbsd-current/lib/libm/src/
H A De_pow.c13 /* pow(x,y) return x**y
46 * pow(x,y) returns x**y nearly rounded. In particular
47 * pow(integer,integer)
97 pow(double x, double y) function
303 DEF_STD(pow); variable
304 LDBL_MAYBE_CLONE(pow); variable
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h82 using std::tr1::pow;
/openbsd-current/games/trek/
H A Dattack.c115 hit = Etc.klingon[i].power * pow(dustfac, tothe) * Param.hitfac;
/openbsd-current/gnu/gcc/gcc/
H A Dfp-test.c60 extern double pow (double, double);
244 d1 = pow (d2, d3);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c60 extern double pow (double, double);
244 d1 = pow (d2, d3);
/openbsd-current/gnu/llvm/llvm/utils/
H A Dshuffle_fuzz.py103 undef_prob = 1.0 - (((A + 1.0) * pow(A, (C + 1.0)/C)) /
104 (A * pow(A + 1.0, (C + 1.0)/C)))
/openbsd-current/gnu/llvm/libcxx/include/__random/
H A Dgamma_distribution.h161 __x = _VSTD::pow(__u, 1 / __a);
168 __x = _VSTD::pow(1 - __a + __a * __e, 1 / __a);
H A Dweibull_distribution.h89 _VSTD::pow(exponential_distribution<result_type>()(__g), 1/__p.a());}
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_cmath.h161 __DEVICE__ float pow(float __base, float __exp) { function
164 __DEVICE__ float pow(float __base, int __iexp) { function
167 __DEVICE__ double pow(double __base, int __iexp) { function
289 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, pow);
417 using ::pow;
H A D__clang_hip_cmath.h152 __DEVICE__ __CONSTEXPR__ float pow(float __base, int __iexp) { function
155 __DEVICE__ __CONSTEXPR__ double pow(double __base, int __iexp) { function
176 __DEVICE__ __CONSTEXPR__ _Float16 pow(_Float16 __base, int __iexp) { function
243 __DEF_FUN2(float, pow)
531 __HIP_OVERLOAD2(double, pow)
705 using ::pow;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_complex.h74 template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, int);
75 template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, const _Tp&);
76 template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&,
78 template<typename _Tp> complex<_Tp> pow(const _Tp&, const complex<_Tp>&);
562 pow(const complex<_Tp>& __z, int __n) function in namespace:std
569 pow(const complex<_Tp>& __x, const _Tp& __y) function in namespace:std
572 return pow(__x.real(), __y);
580 pow(const complex<_Tp>& __x, const complex<_Tp>& __y) function in namespace:std
587 pow(const _Tp& __x, const complex<_Tp>& __y) function in namespace:std
591 : polar(pow(__
[all...]
/openbsd-current/gnu/gcc/libdecnumber/
H A DdecNumber.c1986 /* integer pow is used as a temporary variable. */
1989 pow=powers[cut]*2; \
1990 if ((u)>pow) { \
1991 pow*=4; \
1992 if ((u)>=pow) {(u)-=pow; *(c)+=8;} \
1993 pow/=2; \
1994 if ((u)>=pow) {(u)-=pow; *(c)+=4;} \
1995 pow/
2011 uInt u, pow; /* work */ local
2745 uInt const *pow; /* .. */ local
5567 uInt const *pow; /* work */ local
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_complex.h84 template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, int);
86 template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&, const _Tp&);
88 template<typename _Tp> complex<_Tp> pow(const complex<_Tp>&,
91 template<typename _Tp> complex<_Tp> pow(const _Tp&, const complex<_Tp>&);
937 // 26.2.8/9 pow(__x, __y): Returns the complex power base of __x
942 pow(const complex<_Tp>& __z, int __n) function
947 pow(const complex<_Tp>& __x, const _Tp& __y) function
954 return pow(__x.real(), __y);
981 pow(const complex<_Tp>& __x, const complex<_Tp>& __y) function
986 pow(cons function
992 pow(const _Tp& __x, const complex<_Tp>& __y) function
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/libmath/
H A Dmathconf.h285 # define powf(x, y) pow (x, y)
/openbsd-current/gnu/gcc/gcc/cp/
H A Dcfns.h152 "pow",
/openbsd-current/gnu/lib/libstdc++/libstdc++/libmath/
H A Dmathconf.h290 # define powf(x, y) pow (x, y)
/openbsd-current/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCLowerMASSVEntries.cpp103 /// If there are proper fast-math flags, this function creates llvm.pow
112 // If the argument is 0.75 or 0.25 it is cheaper to turn it into pow
124 Intrinsic::getDeclaration(&M, Intrinsic::pow, CI->getType()));
140 // Handling pow(x, 0.25), pow(x, 0.75), powf(x, 0.25), powf(x, 0.75)
/openbsd-current/gnu/usr.bin/perl/regen/
H A Doverload.pl173 pow (**
/openbsd-current/include/
H A Dtgmath.h113 #define pow(x, y) __tg_impl_full(x, x, y, pow, powf, powl, \ macro

Completed in 402 milliseconds

12345