Searched refs:pow (Results 1 - 25 of 113) sorted by relevance

12345

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dloverload3.C5 extern "C" double pow (double, double);
6 inline double pow (double d, int e) { return pow (d, (double) e); } function
10 pow (1.0, 1);
11 pow (1.0, 1.0);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Darg5.C3 extern double pow(double,int*);
7 extern double pow(double, double);
12 if (pow (2.0, 3.0) != 8.0)
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/26_numerics/complex/
H A Dpow.C11 VERIFY(pow(z, 1.0/3.0) == 0.0);
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dpow.t15 my @pow = ([ 3, 30, 1e-14],
23 $tests += $_->[1] foreach @pow;
56 # perfect, forgetting that it's a call to floating point pow() which never
59 my $pow = 2 ** $n;
61 cmp_ok ($pow, '==', $int, "2 ** $n vs 1 << $n");
64 foreach my $pow (@pow) {
65 my ($base, $max, $range) = @$pow;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D980709-1.c8 c = pow(a, 1.0/3.0);
H A D920501-2.c19 unsigned long long pow; local
32 pow = b;
37 pow = pow * pow % m;
39 pow = pow * b % m;
42 return pow;
H A D980709-1.x0 # pow() is not available on m6811/m6812 target, this test will not link.
6 # This test calls the system libm.a function pow.
/openbsd-current/regress/lib/libm/fpaccuracy/
H A Dpow2_x.c1498 #define pow2_x(x) pow(2.0,x)
H A Dpowx_275.c1095 #define powx_275(x) pow(x,2.75)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Dref9.C30 ex pow() { return basic(); } function
34 try { pow (); } catch (int) {}
/openbsd-current/regress/lib/libm/cephes/
H A Dtestvect.c268 double pow (double, double);
310 {"pow", pow, &ONE, &ZERO, &ONE, 0},
311 {"pow", pow, &ONE, &MZERO, &ONE, 0},
312 {"pow", pow, &MONE, &ZERO, &ONE, 0},
313 {"pow", pow, &MONE, &MZERO, &ONE, 0},
314 {"pow", po
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/26_numerics/
H A Dc_math.cc47 double powtest = std::pow(2., 0);
H A Dvalarray_name_lookup.cc89 Number pow(Number, Number);
141 w = pow(u, v);
/openbsd-current/gnu/usr.bin/perl/vos/
H A Dvos.c6 have pow(0,0) return 1, avoiding c-1471. */
45 double pow(x,y) function
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D921206-1.c27 smap[l] = l > 0 ? 1 + pow(sin(.1 * l / sx)) : 1 - pow(sin(.1 * l / sm));
/openbsd-current/lib/libm/src/
H A Ds_cpow.c64 r = pow (absa, x);
/openbsd-current/gnu/usr.bin/perl/lib/overload/
H A Dnumbers.pm135 pow
/openbsd-current/games/trek/
H A Dhelp.c127 x = pow(1.0 - pow(0.94, dist), 0.3333333);
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h147 __DEVICE__ double pow(double, double);
148 __DEVICE__ double pow(double, int);
149 __DEVICE__ float pow(float, float);
150 __DEVICE__ float pow(float, int);
257 using ::pow;
/openbsd-current/gnu/lib/libstdc++/libstdc++/libmath/
H A Dstubs.c182 return (float) pow(x, y);
190 return pow((double) x, (double) y);
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dmath.h52 using std::pow;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dmath.h52 using std::pow;
/openbsd-current/usr.bin/m4/
H A Dparser.y46 | expr EXPONENT expr { $$ = pow($1, $3); }
/openbsd-current/gnu/gcc/libstdc++-v3/libmath/
H A Dstubs.c377 return (float) pow(x, y);
385 return pow((double) x, (double) y);
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dusage.t23 [qw(atan2 chmod creat kill link mkdir pow rename strstr waitpid)],

Completed in 248 milliseconds

12345