Searched refs:pow (Results 51 - 75 of 113) sorted by relevance

12345

/openbsd-current/gnu/lib/libiberty/src/
H A Dhashtab.c108 int pow, pow2;
112 pow = n + lgup;
115 nx = ldexp (1.0, pow) + ldexp (1.0, pow2);
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DAPFixedPoint.cpp512 APFloat ScaleFactor(std::pow(2, Sema.getLsbWeight()));
567 APFloat ScaleFactor(std::pow(2, -DstFXSema.getLsbWeight()));
581 ScaleFactor = APFloat(std::pow(2, DstFXSema.getLsbWeight()));
/openbsd-current/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp666 // pow(X, Y) * X --> pow(X, Y+1)
667 // X * pow(X, Y) --> pow(X, Y+1)
668 if (match(&I, m_c_FMul(m_OneUse(m_Intrinsic<Intrinsic::pow>(m_Value(X),
673 Value *Pow = Builder.CreateBinaryIntrinsic(Intrinsic::pow, X, Y1, &I);
678 // pow(X, Y) * pow(X, Z) -> pow(X, Y + Z)
679 if (match(Op0, m_Intrinsic<Intrinsic::pow>(m_Valu
[all...]
/openbsd-current/games/trek/
H A Dcomputer.c228 cost = pow(0.90, dist) * 98.0 + 0.5;
/openbsd-current/gnu/gcc/gcc/config/m68k/
H A Dmath-68881.h33 December 1989, add parens around `&' in pow.
307 pow (double x, double y) function
/openbsd-current/gnu/usr.bin/gcc/gcc/config/m68k/
H A Dmath-68881.h33 December 1989, add parens around `&' in pow.
307 pow (double x, double y) function
/openbsd-current/include/
H A Dmath.h191 double pow(double, double);
/openbsd-current/lib/libm/hidden/
H A Dmath.h165 PROTO_NORMAL(pow); variable
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp75 // pow/powr/pown
842 // pow/powr/pown(x, 0) == 1
852 // pow/powr/pown(x, 1.0) = x
858 // pow/powr/pown(x, 2.0) = x*x
866 // pow/powr/pown(x, -1.0) = 1.0/x
879 // pow[r](x, [-]0.5) = sqrt(x)
911 // pow/powr/pown(x, c) = [1/](x*x*..x); where
950 // pown/pow ---> powr(fabs(x), y) | (x & ((int)y << 31))
1011 // We cannot handle corner cases for a general pow() function, give up
1436 Res0 = (opr0 < 0.0) ? -pow(
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dwrappers.t105 is(POSIX::pow(2, 31), 0x80000000, 'pow');
H A Dexport.t98 mktime modf offsetof pathconf pause perror pow putc putchar
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DFixedPointBuilder.h185 ConstantFP::get(OpTy, std::pow(2, -(int)SrcSema.getScale())));
200 ConstantFP::get(OpTy, std::pow(2, DstSema.getScale())));
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pm152 pow => 'x, exponent => $_[0] ** $_[1]',
320 frexp ldexp log10 modf pow sinh tan tanh)],
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/
H A Dthrow_allocator.h123 1 - ::pow(double(1 - _S_throw_prob), double(0.5 / (size + 1)));
/openbsd-current/gnu/gcc/libstdc++-v3/src/
H A Dcompatibility.cc465 _GLIBCXX_MATHL_WRAPPER2 (pow, GLIBCXX_3.4);
/openbsd-current/gnu/llvm/libcxx/include/__random/
H A Dpoisson_distribution.h211 __py = _VSTD::pow(__pr.__mean_, (double)__tx) / __fac[static_cast<int>(__tx)];
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dvalarith.c798 v = pow (v1, v2);
936 v = pow (v1, v2);
1057 v = pow (v1, v2);
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A Dtgmath.h462 // pow
470 __tg_pow(double __x, double __y) {return pow(__x, __y);}
489 #undef pow macro
490 #define pow(__x, __y) __tg_pow(__tg_promote2((__x), (__y))(__x), \ macro
/openbsd-current/gnu/llvm/libcxx/include/
H A Dmath.h110 floating_point pow (arithmetic x, arithmetic y);
861 // pow
864 inline _LIBCPP_HIDE_FROM_ABI float pow(float __x, float __y) _NOEXCEPT {return __builtin_powf(__x, __y);}
867 _LIBCPP_HIDE_FROM_ABI double pow(double __x, double __y) _NOEXCEPT {
871 inline _LIBCPP_HIDE_FROM_ABI long double pow(long double __x, long double __y) _NOEXCEPT {return __builtin_powl(__x, __y);}
882 pow(_A1 __x, _A2 __y) _NOEXCEPT
887 return ::pow((__result_type)__x, (__result_type)__y);
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DConstantFolding.cpp1570 case Intrinsic::pow:
1687 return Name == "pow" || Name == "powf";
2210 // Fold exp2(x) as pow(2, x), in case the host lacks a C99 library.
2211 return ConstantFoldBinaryFP(pow, APFloat(2.0), APF, Ty);
2302 // Fold exp2(x) as pow(2, x), in case the host lacks a C99 library.
2303 return ConstantFoldBinaryFP(pow, APFloat(2.0), APF, Ty);
2577 case Intrinsic::pow:
2578 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty);
2602 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty);
2659 APFloat((float)std::pow((floa
[all...]
/openbsd-current/gnu/usr.bin/perl/lib/B/
H A DOp_private.pm152 $bits{$_}{4} = 'OPpTARGET_MY' for qw(abs add atan2 ceil chdir chmod chomp chown chr chroot concat cos crypt divide emptyavhv exec exp flock floor getpgrp getppid getpriority hex i_add i_divide i_modulo i_multiply i_subtract index int kill left_shift length link log mkdir modulo multiconcat multiply nbit_and nbit_or nbit_xor ncomplement oct ord pow push rand refaddr reftype rename right_shift rindex rmdir schomp scomplement setpgrp setpriority sin sleep sqrt srand stringify subtract symlink system time undef unlink unshift utime wait waitpid);
479 @{$bits{pow}}{1,0} = ($bf[1], $bf[1]);
882 OPpTARGET_MY => [qw(abs add atan2 ceil chdir chmod chomp chown chr chroot concat cos crypt divide emptyavhv exec exp flock floor getpgrp getppid getpriority hex i_add i_divide i_modulo i_multiply i_subtract index int kill left_shift length link log mkdir modulo multiconcat multiply nbit_and nbit_or nbit_xor ncomplement oct ord pow push rand refaddr reftype rename right_shift rindex rmdir schomp scomplement setpgrp setpriority sin sleep sqrt srand stringify subtract symlink system time undef unlink unshift utime wait waitpid)],
/openbsd-current/lib/libkeynote/
H A Dkeynote.y396 $$ = pow($1, $3);
/openbsd-current/gnu/usr.bin/perl/dist/Devel-PPPort/devel/
H A Dmktodo.pl112 pow
/openbsd-current/gnu/usr.bin/perl/cpan/Math-BigInt/t/
H A Dmbimbf.inc1226 #foreach (qw/add sub mul div pow mod/) {
1227 foreach my $method (qw/add sub mul pow mod/) {
/openbsd-current/games/phantasia/
H A Dmisc.c1001 / MODULES CALLED: pow(), floor()
1017 return (floor(pow((experience / 1000.0), 0.4875)));
1019 return (floor(pow((experience / 1250.0), 0.4865)));

Completed in 384 milliseconds

12345