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

1234567

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Daac_tablegen.h39 ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.);
H A Dmpegaudio_tablegen.h50 f = value * cbrtf(value) * pow(2, (i & 3) * 0.25);
61 double f = (double)value * cbrtf(value) * pow(2, (exponent - 400) * 0.25 + FRAC_BITS + 5);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Daac_tablegen.h38 ff_aac_pow2sf_tab[i] = pow(2, (i - POW_SF2_ZERO) / 4.0);
H A Dcbrt_tablegen.h45 f.f = pow(i, 1.0 / 3.0) * i;
H A Dmpegaudio_tablegen.h52 f = value / IMDCT_SCALAR * pow(value, 1.0 / 3.0) * pow(2, (i & 3) * 0.25);
64 double f = (double)value * pow(value, 1.0 / 3.0) * pow(2, (exponent - 400) * 0.25 + FRAC_BITS + 5) / IMDCT_SCALAR;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/reiserfs/
H A Dhashes.c135 int j, pow; local
139 for (pow = 1, i = 1; i < len; i++)
140 pow = pow * 10;
145 a = (msg[0] - 48) * pow;
149 for (pow = 1, j = i; j < len - 1; j++)
150 pow = pow * 10;
151 a = a + c * pow;
156 for (pow
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/macintosh/
H A Dwindfarm_smu_sensors.c289 struct smu_cpu_power_sensor *pow = to_smu_cpu_power(sr); local
291 if (pow->volts)
292 wf_put_sensor(pow->volts);
293 if (pow->amps)
294 wf_put_sensor(pow->amps);
295 kfree(pow);
300 struct smu_cpu_power_sensor *pow = to_smu_cpu_power(sr); local
305 rc = pow->amps->ops->get_value(pow->amps, &amps);
309 if (pow
341 struct smu_cpu_power_sensor *pow; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/
H A Dformatter.js92 if (bytes < Math.pow(mem_K, 2))
97 else if (bytes < Math.pow(mem_K, 3))
99 convertedSize = bytes / Math.pow(mem_K, 2);
102 else if (bytes < Math.pow(mem_K, 4))
104 convertedSize = bytes / Math.pow(mem_K, 3);
109 convertedSize = bytes / Math.pow(mem_K, 4);
131 if (bytes < Math.pow(size_K, 2))
136 else if (bytes < Math.pow(size_K, 3))
138 convertedSize = bytes / Math.pow(size_K, 2);
141 else if (bytes < Math.pow(size_
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/tc/
H A Dtc_cbq.c37 vxmt *= (pow(g, -(double)maxburst) - 1);
53 offtime *= pow(g, -(double)minburst) - 1;
55 offtime *= 1 + (pow(g, -(double)(minburst-1)) - 1)/(1-g);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dscales.h80 #define fromBARK(z) (102.f*(z)-2.f*pow(z,2.f)+.4f*pow(z,3.f)+pow(1.46f,z)-1.f)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/netem/
H A Dpareto.c27 dvalue = 1.0/pow(dvalue, 1.0/a);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/replaygain_synthesis/include/private/
H A Dfast_float_math_hack.h16 #define pow powf macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/calc++/
H A Dcalcserver.cpp85 int calcService::pow(double a, double b, double *result) function in class:calcService
86 { *result = ::pow(a, b);
H A Dcalcclient.cpp44 { fprintf(stderr, "Usage: [add|sub|mul|div|pow] num num\n");
66 calc.pow(a, b, &result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/calc++/
H A Dcalcserver.cpp85 int calcService::pow(double a, double b, double *result) function in class:calcService
86 { *result = ::pow(a, b);
H A Dcalcclient.cpp44 { fprintf(stderr, "Usage: [add|sub|mul|div|pow] num num\n");
66 calc.pow(a, b, &result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dlibm.h48 #define powf(x, y) ((float)pow(x, y))
54 return x < 0 ? -pow(-x, 1.0 / 3.0) : pow(x, 1.0 / 3.0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/calc_vs2005/calc_vs2005/
H A Dcalcclient.cpp44 { fprintf(stderr, "Usage: [add|sub|mul|div|pow] num num\n");
66 calc.pow(a, b, &result);
H A DsoapcalcProxy.h59 /// Web service operation 'pow' (returns error code or SOAP_OK)
60 virtual int pow(double a, double b, double *result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/calc_xcode/
H A Dcalcclient.cpp44 { fprintf(stderr, "Usage: [add|sub|mul|div|pow] num num\n");
66 calc.pow(a, b, &result);
H A DsoapcalcProxy.h59 /// Web service operation 'pow' (returns error code or SOAP_OK)
60 virtual int pow(double a, double b, double *result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/calc_vs2005/calc_vs2005/
H A Dcalcclient.cpp44 { fprintf(stderr, "Usage: [add|sub|mul|div|pow] num num\n");
66 calc.pow(a, b, &result);
H A DsoapcalcProxy.h59 /// Web service operation 'pow' (returns error code or SOAP_OK)
60 virtual int pow(double a, double b, double *result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/calc_xcode/
H A Dcalcclient.cpp44 { fprintf(stderr, "Usage: [add|sub|mul|div|pow] num num\n");
66 calc.pow(a, b, &result);
H A DsoapcalcProxy.h59 /// Web service operation 'pow' (returns error code or SOAP_OK)
60 virtual int pow(double a, double b, double *result);

Completed in 310 milliseconds

1234567