aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2018-08-07 17:45:11 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2018-08-09 13:38:43 -0300
commitff50653e35b50e118fdd9e9f6532d418a6e8dc1c (patch)
tree10de13e35055f124da0c8ff3412283f463a4c404 /Android.bp
parenta669a2a8cff6399ec4040a6d7f7e92a503038164 (diff)
downloadarm-optimized-routines-ff50653e35b50e118fdd9e9f6532d418a6e8dc1c.tar.gz
Export double precision implementationsmaster-cuttlefish-testing-release
This patch exports exp, exp2, log, log2, and pow. All mathtests pass on x86_64, x86, arm64, and arm. Bug: N/A Test: Ran tests. Change-Id: I78157bfa030fca001fb7535d49551416883cd6fe
Diffstat (limited to 'Android.bp')
-rwxr-xr-xAndroid.bp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index d533695..e8ded12 100755
--- a/Android.bp
+++ b/Android.bp
@@ -12,14 +12,24 @@ cc_library {
],
srcs: [
"math/cosf.c",
+ "math/exp2.c",
"math/exp2f.c",
"math/exp2f_data.c",
+ "math/exp.c",
+ "math/exp_data.c",
"math/expf.c",
+ "math/log2.c",
+ "math/log2_data.c",
"math/log2f.c",
"math/log2f_data.c",
+ "math/log.c",
+ "math/log_data.c",
"math/logf.c",
"math/logf_data.c",
+ "math/math_err.c",
"math/math_errf.c",
+ "math/pow.c",
+ "math/pow_log_data.c",
"math/powf.c",
"math/powf_log2_data.c",
"math/sincosf.c",