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

Unified Diff: src/base/ieee754.h

Issue 2083573002: [builtins] Unify Cosh, Sinh and Tanh as exports from flibm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE and windows fix. 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') | no next file with comments »
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 cf335807321fde77fca98bea21c65e1e94b1d83f..19a6adcc56573a414b937baafaf251715b1011d7 100644
--- a/src/base/ieee754.h
+++ b/src/base/ieee754.h
@@ -50,6 +50,15 @@ double sin(double x);
// Returns the tangent of |x|, where |x| is given in radians.
double tan(double x);
+// Returns the hyperbolic cosine of |x|, where |x| is given radians.
+double cosh(double x);
+
+// Returns the hyperbolic sine of |x|, where |x| is given radians.
+double sinh(double x);
+
+// Returns the hyperbolic tangent of |x|, where |x| is given radians.
+double tanh(double x);
+
} // namespace ieee754
} // namespace base
} // namespace v8
« no previous file with comments | « src/assembler.cc ('k') | src/base/ieee754.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698