aboutsummaryrefslogtreecommitdiff
path: root/src/vectors-8-default.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vectors-8-default.h')
-rw-r--r--src/vectors-8-default.h32
1 files changed, 21 insertions, 11 deletions
diff --git a/src/vectors-8-default.h b/src/vectors-8-default.h
index ee85593..94d9ed4 100644
--- a/src/vectors-8-default.h
+++ b/src/vectors-8-default.h
@@ -76,17 +76,27 @@
#define k8nmsub(x,y,z) (-(x)*(y)+(z))
// Functions
-#define k8cos(x) (cos(x))
-#define k8exp(x) (exp(x))
-#define k8fabs(x) (fabs(x))
-#define k8fmax(x,y) (fmax(x,y))
-#define k8fmin(x,y) (fmin(x,y))
-#define k8fnabs(x) (-fabs(x))
-#define k8log(x) (log(x))
-#define k8pow(x,a) (pow(x,a))
-#define k8sin(x) (sin(x))
-#define k8sqrt(x) (sqrt(x))
-#define k8tan(x) (tan(x))
+#define k8acos(x) (acos(x))
+#define k8acosh(x) (acosh(x))
+#define k8asin(x) (asin(x))
+#define k8asinh(x) (asinh(x))
+#define k8atan(x) (atan(x))
+#define k8atan2(x,y) (atan2(x,y))
+#define k8atanh(x) (atanh(x))
+#define k8cos(x) (cos(x))
+#define k8cosh(x) (cosh(x))
+#define k8exp(x) (exp(x))
+#define k8fabs(x) (fabs(x))
+#define k8fmax(x,y) (fmax(x,y))
+#define k8fmin(x,y) (fmin(x,y))
+#define k8fnabs(x) (-fabs(x))
+#define k8log(x) (log(x))
+#define k8pow(x,a) (pow(x,a))
+#define k8sin(x) (sin(x))
+#define k8sinh(x) (sinh(x))
+#define k8sqrt(x) (sqrt(x))
+#define k8tan(x) (tan(x))
+#define k8tanh(x) (tanh(x))
#ifdef __cplusplus
# define k8sgn(x) ({ using namespace std; signbit(x); })