Symbol: pow
dist/pf/sbin/pfctl/pfctl_altq.c
476
gton = pow(g, (double)maxburst);
dist/pf/sbin/pfctl/pfctl_altq.c
477
gtom = pow(g, (double)(minburst-1));
dist/pf/sbin/pfctl/pfctl_altq.c
489
pow(2.0, (double)RM_FILTER_GAIN);
dist/pf/sbin/pfctl/pfctl_altq.c
491
pow(2.0, (double)RM_FILTER_GAIN);
dist/pf/sbin/pfctl/pfctl_altq.c
493
pow(2.0, (double)RM_FILTER_GAIN);
games/hack/hack.mon.c
857
>= 10 * pow((unsigned) (ul - 1)))
games/phantasia/fight.c
157
&& drandom() > 0.2 + pow(0.4, (double) (flockcnt / 3 + Circle / 3.0)))
games/phantasia/misc.c
705
return (floor(pow((experience / 1000.0), 0.4875)));
games/phantasia/misc.c
707
return (floor(pow((experience / 1250.0), 0.4865)));
games/trek/attack.c
121
hit = Etc.klingon[i].power * pow(dustfac, tothe) * Param.hitfac;
games/trek/computer.c
228
cost = pow(0.90, dist) * 98.0 + 0.5;
games/trek/help.c
130
x = pow(1.0 - pow(0.94, dist), 0.3333333);
games/warp/score.c
385
power = pow((double)inumenemies+ /* total number of enemies */
include/math.h
259
double pow(double, double);
include/tgmath.h
145
#define pow(a,b) __TG_COMPLEX2((a), (b), pow)
lib/libm/complex/cpow.c
49
r = pow(absa, x);
lib/libm/noieee_src/n_pow.c
127
__weak_alias(_pow, pow);
lib/libm/noieee_src/n_pow.c
128
__weak_alias(_powl, pow);
lib/libm/noieee_src/n_pow.c
129
__weak_alias(powl, pow);
lib/libm/noieee_src/n_pow.c
135
return pow((double) x, (double) (y));
lib/libm/src/e_powl.c
58
return pow(b, e);
lib/lua/libm/libm.c
146
DFUNC_DBL_DBL(pow)
sys/arch/sandpoint/sandpoint/satmgr.c
931
isattalk(struct satmgr_softc *sc, int pow, int led, int rat, int fan,
sys/arch/sandpoint/sandpoint/satmgr.c
941
p[0] = pow;
sys/dev/ic/arn9003.c
2637
ar9003_get_desired_txgain(struct athn_softc *sc, int chain, int pow)
sys/dev/ic/arn9003.c
2667
return pow - delta - tempcorr - voltcorr + scale;
sys/dev/ic/sl811hs.c
1135
slhci_preinit(struct slhci_softc *sc, PowerFunc pow, bus_space_tag_t iot,
sys/dev/ic/sl811hs.c
1159
sc->sc_enable_power = pow;
sys/dev/stbi/stb_image.c
1046
output[i*comp + k] = (float) pow(data[i*comp+k]/255.0f, l2h_gamma) * l2h_scale;
sys/dev/stbi/stb_image.c
1064
float z = (float) pow(data[i*comp+k]*h2l_scale_i, h2l_gamma_i) * 255 + 0.5f;
sys/sys/midiio.h
382
#define MIDIPITCH_TO_FRHZ(mp) (440*pow(2,(MIDIPITCH_TO_FRKEY((mp))-69)/12))
tests/lib/libm/t_cbrt.c
71
double x_pow13 = pow(x[i], 1.0 / 3.0);
tests/lib/libm/t_pow.c
119
z = pow(0.1, y);
tests/lib/libm/t_pow.c
123
z = pow(1.1, y);
tests/lib/libm/t_pow.c
143
z = pow(x, -2.0);
tests/lib/libm/t_pow.c
147
z = pow(x, 2.0);
tests/lib/libm/t_pow.c
167
z = pow(0.1, y);
tests/lib/libm/t_pow.c
171
z = pow(1.1, y);
tests/lib/libm/t_pow.c
194
ATF_CHECK_EQ_MSG((z = pow(-1.0, infp)), 1.0, "z=%a", z);
tests/lib/libm/t_pow.c
195
ATF_CHECK_EQ_MSG((z = pow(-1.0, infn)), 1.0, "z=%a", z);
tests/lib/libm/t_pow.c
215
ATF_CHECK_EQ_MSG(pow(1.0, z), 1.0, "z=%a pow(1.0, z)=%a",
tests/lib/libm/t_pow.c
216
z, pow(1.0, z));
tests/lib/libm/t_pow.c
219
ATF_CHECK_EQ_MSG(pow(1.0, y[i]), 1.0,
tests/lib/libm/t_pow.c
221
i, y[i], pow(1.0, y[i]));
tests/lib/libm/t_pow.c
239
z = pow(+0.0, 3.0);
tests/lib/libm/t_pow.c
243
z = pow(-0.0, 3.0);
tests/lib/libm/t_pow.c
251
z = pow(+0.0, 4.0);
tests/lib/libm/t_pow.c
255
z = pow(-0.0, 4.0);
tests/lib/libm/t_pow.c
263
z = pow(+0.0, -4.0);
tests/lib/libm/t_pow.c
266
z = pow(-0.0, -4.0);
tests/lib/libm/t_pow.c
269
z = pow(+0.0, -5.0);
tests/lib/libm/t_pow.c
272
z = pow(-0.0, -5.0);
tests/lib/libm/t_pow.c
292
ATF_CHECK_EQ_MSG(pow(z, +0.0), 1.0, "z=%a pow(z, +0.0)=%a",
tests/lib/libm/t_pow.c
293
z, pow(z, +0.0));
tests/lib/libm/t_pow.c
294
ATF_CHECK_EQ_MSG(pow(z, -0.0), 1.0, "z=%a pow(z, -0.0)=%a",
tests/lib/libm/t_pow.c
295
z, pow(z, -0.0));
tests/lib/libm/t_pow.c
298
ATF_CHECK_EQ_MSG(pow(x[i], +0.0), 1.0,
tests/lib/libm/t_pow.c
299
"i=%zu pow(%a, +0.0)=%a", i, x[i], pow(x[i], +0.0));
tests/lib/libm/t_pow.c
300
ATF_CHECK_EQ_MSG(pow(x[i], -0.0), 1.0,
tests/lib/libm/t_pow.c
301
"i=%zu pow(%a, -0.0)=%a", i, x[i], pow(x[i], -0.0));
tests/lib/libm/t_pow.c
49
const double z = pow(x, 2.0);
tests/lib/libm/t_pow.c
63
const double z = pow(2.0, y);
tests/lib/libm/t_pow.c
83
z = pow(x, 3.0);
tests/lib/libm/t_pow.c
87
z = pow(x, 4.0);
tests/lib/libm/t_pow.c
95
z = pow(x, -3.0);
tests/lib/libm/t_pow.c
99
z = pow(x, -4.0);
tests/lib/libm/t_sqrt.c
70
double x_pow12 = pow(x[i], 1.0 / 2.0);
tests/lib/lua/libm/h_lualibm.c
75
TEST(pow(M_SQRT2, 2.0));
usr.bin/m4/parser.y
55
| expr EXPONENT expr { $$ = pow($1, $3); }
usr.bin/touch/touch.c
477
frac = pow(10.0, (double)fdigs);
usr.sbin/altq/libaltq/qop_cbq.c
833
gton = pow(g, (double)maxburst);
usr.sbin/altq/libaltq/qop_cbq.c
834
gtom = pow(g, (double)(minburst-1));
usr.sbin/altq/libaltq/qop_cbq.c
852
maxidle = ((maxidle * 8.0) / psPerByte) * pow(2, RM_FILTER_GAIN);
usr.sbin/altq/libaltq/qop_cbq.c
855
lofftime = (lofftime * 8.0) / psPerByte * pow(2, RM_FILTER_GAIN);
usr.sbin/altq/libaltq/qop_cbq.c
856
minidle = ((minidle * 8.0) / psPerByte) * pow(2, RM_FILTER_GAIN);