Searched refs:MathSqrt (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/ |
D | math.js | 162 function MathSqrt(x) { class 206 if (x > 0) return MathLog(x + MathSqrt(x * x + 1)); 208 return -MathLog(-x + MathSqrt(x * x + 1)); 217 return MathLog(x + MathSqrt(x + 1) * MathSqrt(x - 1)); 270 return MathSqrt(sum) * max; 355 "sqrt", MathSqrt,
|
D | counters.h | 517 SC(math_sqrt, V8.MathSqrt) \
|
D | objects.h | 6555 V(Math, sqrt, MathSqrt) \
|
/external/v8/src/compiler/ |
D | js-builtin-reducer-unittest.cc | 66 TEST_F(JSBuiltinReducerTest, MathSqrt) { in TEST_F() argument
|
/external/v8/src/mips64/ |
D | lithium-mips64.h | 119 V(MathSqrt) \ 961 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
/external/v8/src/ia32/ |
D | lithium-ia32.h | 123 V(MathSqrt) \ 968 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
/external/v8/src/mips/ |
D | lithium-mips.h | 119 V(MathSqrt) \ 962 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
/external/v8/src/x64/ |
D | lithium-x64.h | 119 V(MathSqrt) \ 964 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
/external/v8/src/arm/ |
D | lithium-arm.h | 119 V(MathSqrt) \ 983 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
/external/v8/src/x87/ |
D | lithium-x87.h | 124 V(MathSqrt) \ 990 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|
/external/v8/src/arm64/ |
D | lithium-arm64.h | 127 V(MathSqrt) \ 2120 DECLARE_CONCRETE_INSTRUCTION(MathSqrt, "math-sqrt")
|