HomeSort by relevance Sort by last modified time
    Searched refs:Sqrt (Results 1 - 6 of 6) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
Stats.cs 59 * numerical properties than the textbook summation/sqrt. To me
75 return Math.Sqrt(s2);
88 return Math.Sqrt(s2);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
Stats.cs 64 * numerical properties than the textbook summation/sqrt. To me
83 return Math.Sqrt( s2 );
99 return Math.Sqrt( s2 );
  /external/skia/src/core/
SkFloat.h 51 void sqrt() { fPacked = Sqrt(fPacked); } function in class:SkFloat
52 void setSqrt(const SkFloat& a) { fPacked = Sqrt(a.fPacked); }
104 static int32_t Sqrt(int32_t);
SkFP.h 65 #define SkFPSqrt(x) SkFloat::Sqrt(x)
SkFloat.cpp 215 int32_t SkFloat::Sqrt(int32_t packed)
219 SkDEBUGFAIL("can't sqrt a negative number");
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 895 // Expand pow(x, 0.5) to (x == -infinity ? +infinity : fabs(sqrt(x))).
898 // TODO: In fast-math mode, this could be just sqrt(x).
899 // TODO: In finite-only mode, this could be just fabs(sqrt(x)).
902 Value *Sqrt = EmitUnaryFloatFnCall(Op1, "sqrt", B,
904 Value *FAbs = EmitUnaryFloatFnCall(Sqrt, "fabs", B,
    [all...]

Completed in 2051 milliseconds