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

123

/freebsd-9.3-release/sys/boot/ficl/
H A Dfloat.c975 power = (float)pow(10.0, exponent);
/freebsd-9.3-release/sys/dev/mwl/
H A Dmwlhal.c1133 uint16_t pow = hc->targetPowers[i]; local
1134 if (pow > maxtxpow)
1135 pow = maxtxpow;
1136 pCmd->PowerLevelList[i] = htole16(pow);
/freebsd-9.3-release/contrib/groff/src/preproc/pic/
H A Dpic.y1530 $$ = pow($1, $3);
1587 $$ = pow(10.0, $3);
H A Dlex.cpp1029 token_double *= pow(10.0, n);
/freebsd-9.3-release/contrib/gcc/
H A Dexpmed.c3282 int pow, pow2;
3291 pow = n + lgup;
3297 gcc_assert (pow != 2 * HOST_BITS_PER_WIDE_INT);
3300 if (pow >= HOST_BITS_PER_WIDE_INT)
3302 nh = (HOST_WIDE_INT) 1 << (pow - HOST_BITS_PER_WIDE_INT);
3308 nl = (unsigned HOST_WIDE_INT) 1 << pow;
3270 int pow, pow2; local
H A Dsys-protos.h836 extern double pow(double, double);
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_util.c1165 fval *= pow(2, shift);
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dvalarray_after.h548 _DEFINE_EXPR_BINARY_FUNCTION(pow)
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsnprintf.c196 #include <math.h> /* For pow(3), NAN, and INFINITY. */
2120 value = pow(10, i) * digits;
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1141 if (UnsafeFPShrink && Callee->getName() == "pow" &&
1157 // pow(1.0, x) -> 1.0
1160 // pow(2.0, x) -> exp2(x)
1170 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
1178 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
1179 // This is faster than calling pow, and still handles negative zero
1194 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
1196 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
1198 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
2007 case Intrinsic::pow
[all...]
/freebsd-9.3-release/contrib/one-true-awk/
H A Drun.c1043 i = errcheck(pow(i, j), "pow");
1052 double ipow(double x, int n) /* x**n. ought to be done by pow, but isn't always */
1137 xf = errcheck(pow(xf, yf), "pow");
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1908 case Intrinsic::pow:
1995 case LibFunc::pow:
1998 return checkBinaryFloatSignature(*CI, Intrinsic::pow);
H A DBBVectorize.cpp666 case Intrinsic::pow:
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-npei-defs.h7293 uint64_t pow : 1; /**< POW_ECC_ERR */ member in struct:cvmx_npei_rsl_int_blocks::cvmx_npei_rsl_int_blocks_s
7319 uint64_t pow : 1;
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c530 fval *= pow(2, str2shift(end));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp1306 // Transform a call to pow* into a @llvm.pow.* intrinsic call.
1312 Value *F = CGM.getIntrinsic(Intrinsic::pow, ArgType);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4294 /// visitPow - Lower a pow intrinsic. Handles the special sequences for
4996 case Intrinsic::pow:

Completed in 515 milliseconds

123