HomeSort by relevance Sort by last modified time
    Searched defs:Pow (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 844 // 'pow*' Optimizations
858 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
860 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
867 if (Op2C->getValueAPF().isZero()) // pow(x, 0.0) -> 1.0
871 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
872 // This is faster than calling pow, and still handles negative zero
887 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
889 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
891 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 6083 milliseconds