Home
last modified time | relevance | path

Searched refs:pow (Results 1 – 25 of 65) sorted by relevance

123

/titanic_41/usr/src/head/iso/
H A Dmath_iso.h84 extern double pow __P((double, double));
95 #pragma does_not_read_global_data(exp, log, log10, pow, sqrt)
100 #pragma does_not_write_global_data(exp, log, log10, pow, sqrt)
105 #pragma no_side_effect(exp, log, log10, pow, sqrt)
161 inline double pow(double __X, int __Y) { return in pow() function
162 pow(__X, (double) (__Y)); } in pow()
181 inline float pow(float __X, float __Y) { return __powf(__X, __Y); } in pow() function
182 inline float pow(float __X, int __Y) { return in pow() function
183 pow((double) (__X), (double) (__Y)); } in pow()
212 inline long double pow(long double __X, long double __Y) { return in pow() function
[all …]
/titanic_41/usr/src/lib/libipmi/common/
H A Dipmi_sdr.c648 (b * pow(10, k1))) * pow(10, k2)); in ipmi_sdr_conv_reading()
656 (b * pow(10, k1))) * pow(10, k2)); in ipmi_sdr_conv_reading()
677 *result = pow(10.0, *result); in ipmi_sdr_conv_reading()
680 *result = pow(2.0, *result); in ipmi_sdr_conv_reading()
683 *result = pow(*result, -1.0); /* 1/x w/o exception */ in ipmi_sdr_conv_reading()
686 *result = pow(*result, 2.0); in ipmi_sdr_conv_reading()
689 *result = pow(*result, 3.0); in ipmi_sdr_conv_reading()
/titanic_41/usr/src/tools/ctf/cvt/
H A Dctfmerge.c373 wip_add_work(wip_t *slot, tdata_t *pow) in wip_add_work() argument
376 slot->wip_td = pow; in wip_add_work()
380 (void *)pow, (void *)slot->wip_td); in wip_add_work()
382 merge_into_master(pow, slot->wip_td, NULL, 0); in wip_add_work()
383 tdata_free(pow); in wip_add_work()
393 tdata_t *pow; in worker_runphase1() local
413 pow = fifo_remove(wq->wq_queue); in worker_runphase1()
417 assert(pow != NULL); in worker_runphase1()
427 wip_add_work(wipslot, pow); in worker_runphase1()
/titanic_41/usr/src/lib/libshell/common/tests/
H A Darith.sh146 if [[ $(( pow(2,3) )) != 8 ]]
149 ( [[ $(( pow(2,(3)) )) == 8 ]] ) 2> /dev/null
469 (( pow(1.0,Inf) == 1.0 )) || err_exit 'pow(1.0,Inf) != 1.0'
470 (( pow(Inf,0.0) == 1.0 )) || err_exit 'pow(Inf,0.0) != 1.0'
/titanic_41/usr/src/lib/libm/common/complex/
H A Dcpow.c188 r = pow(-x, u); in cpow()
193 D_RE(ans) = pow(x, u); in cpow()
225 r = pow(fabs(x + x), u) * exp2(-0.5 * u); in cpow()
228 r = pow(fabs(x), u) * exp2(0.5 * u); in cpow()
H A Dcpowf.c113 dr = pow(dsqrt2 * dx, du); in cpowf()
/titanic_41/usr/src/cmd/sendmail/db/hash/
H A Dhash_rec.c603 u_int32_t pow; local
628 pow = __db_log2(hcp->hdr->max_bucket + 1);
629 if (pow > hcp->hdr->ovfl_point) {
630 hcp->hdr->spares[pow] =
632 hcp->hdr->ovfl_point = pow;
645 pow = 1 << __db_log2(hcp->hdr->max_bucket + 1);
646 hcp->hdr->high_mask = pow - 1;
647 hcp->hdr->low_mask = (pow >> 1) - 1;
/titanic_41/usr/src/common/mpi/
H A Dmpi.c572 int pow; in mp_div_d() local
580 if((pow = s_mp_ispow2d(d)) >= 0) { in mp_div_d()
583 mask = ((mp_digit)1 << pow) - 1; in mp_div_d()
588 s_mp_div_2d(q, pow); in mp_div_d()
3345 int pow; in s_mp_mul_d() local
3353 if (0 <= (pow = s_mp_ispow2d(d))) { in s_mp_mul_d()
3354 return s_mp_mul_2d(a, (mp_digit)pow); in s_mp_mul_d()
4539 int pow = 0; in s_mp_ispow2d() local
4542 pow += 16; in s_mp_ispow2d()
4544 pow += 8; in s_mp_ispow2d()
[all …]
/titanic_41/usr/src/lib/libmp/
H A DMakefile.com31 OBJECTS= gcd.o madd.o mdiv.o mout.o msqrt.o mult.o pow.o util.o
/titanic_41/usr/src/head/
H A Dtgmath.h68 #undef pow
69 #define pow(x, y) __tgmath_pow(x, y) macro
/titanic_41/usr/src/lib/libmp/common/
H A Dlibmp.h68 extern void pow(MINT *, MINT *, MINT *, MINT *);
H A Dold_mp.c47 void pow(MINT *a, MINT *b, MINT *c, MINT *d) { mp_pow(a, b, c, d); } in pow() function
H A Dmapfile_1-vers55 pow;
/titanic_41/usr/src/lib/libm/common/C/
H A Dpow.c30 #pragma weak __pow = pow
161 pow(double x, double y) { in pow() function
H A Djn.c141 b = pow(0.5*x, (GENERIC) n); in jn()
/titanic_41/usr/src/cmd/mdb/sparc/kmdb/
H A Dkaif.c331 int pow; in kaif_wapt_calc_mask() local
336 for (pow = 0; len > 1; len /= 256, pow++) in kaif_wapt_calc_mask()
339 return (~((1 << pow) - 1)); in kaif_wapt_calc_mask()
/titanic_41/usr/src/lib/libshell/common/data/
H A Dmath.tab57 f 2 pow
/titanic_41/usr/src/uts/common/fs/zfs/
H A Dvdev_raidz.c1092 int pow; in vdev_raidz_matrix_init() local
1103 pow = map[i] * n; in vdev_raidz_matrix_init()
1104 if (pow > 255) in vdev_raidz_matrix_init()
1105 pow -= 255; in vdev_raidz_matrix_init()
1106 ASSERT(pow <= 255); in vdev_raidz_matrix_init()
1109 pow -= map[i]; in vdev_raidz_matrix_init()
1110 if (pow < 0) in vdev_raidz_matrix_init()
1111 pow += 255; in vdev_raidz_matrix_init()
1112 rows[i][j] = vdev_raidz_pow2[pow]; in vdev_raidz_matrix_init()
/titanic_41/usr/src/cmd/hal/utils/
H A Dacpi.c144 int pow; in ac_adapter_present() local
149 if (ioctl(fd, ACPI_DRV_IOC_POWER_STATUS, &pow) < 0) { in ac_adapter_present()
155 if (pow > 0) { in ac_adapter_present()
/titanic_41/usr/src/man/man3m/
H A DMakefile107 pow.3m \
/titanic_41/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DStddevValue.java127 squareOfAverage = squareOfAverage.pow(2); in standardDeviation()
/titanic_41/usr/src/lib/libm/i386/src/
H A Dpow.s61 LIBM_ANSI_PRAGMA_WEAK(pow,function)
83 ENTRY(pow)
140 jp 1f / so that pow(NaN1,NaN2) returns NaN2
/titanic_41/usr/src/lib/libm1/common/
H A Dlibmv1.c65 #pragma weak pow = __pow macro
/titanic_41/usr/src/lib/libsqlite/test/
H A Dselect5.test27 for {set j 0} {pow(2,$j)<$i} {incr j} {}
/titanic_41/usr/src/lib/libbc/inc/include/
H A Dmath.h62 extern double pow(/* double x, double y */);

123