Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: src/base/ieee754.h

Issue 2116753002: [builtins] Unify most of the remaining Math builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2102223005
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/assembler.cc ('k') | src/base/ieee754.cc » ('j') | src/bootstrapper.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/ieee754.h
diff --git a/src/base/ieee754.h b/src/base/ieee754.h
index 19a6adcc56573a414b937baafaf251715b1011d7..80523a1414c5adeb867d6405e84f009920c0ba41 100644
--- a/src/base/ieee754.h
+++ b/src/base/ieee754.h
@@ -9,6 +9,20 @@ namespace v8 {
namespace base {
namespace ieee754 {
+// Returns the arc cosine of |x|; that is the value whose cosine is |x|.
+double acos(double x);
+
+// Returns the inverse hyperbolic cosine of |x|; that is the value whose
+// hyperbolic cosine is |x|.
+double acosh(double x);
+
+// Returns the arc sine of |x|; that is the value whose sine is |x|.
+double asin(double x);
+
+// Returns the inverse hyperbolic sine of |x|; that is the value whose
+// hyperbolic sine is |x|.
+double asinh(double x);
+
// Returns the principal value of the arc tangent of |x|; that is the value
// whose tangent is |x|.
double atan(double x);
« no previous file with comments | « src/assembler.cc ('k') | src/base/ieee754.cc » ('j') | src/bootstrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698