Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/arm-optimized-routines/math/aarch64/experimental/asinhf_data.c
48375 views
1
/*
2
* Coefficients for single-precision asinh(x) function.
3
*
4
* Copyright (c) 2022-2024, Arm Limited.
5
* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
6
*/
7
8
#include "math_config.h"
9
10
/* Approximate asinhf(x) directly in [2^-12, 1]. See for tools/asinhf.sollya
11
for these coeffs were generated. */
12
const struct asinhf_data __asinhf_data
13
= { .coeffs = { -0x1.9b16fap-19f, -0x1.552baap-3f, -0x1.4e572ap-11f,
14
0x1.3a81dcp-4f, 0x1.65bbaap-10f, -0x1.057f1p-4f,
15
0x1.6c1d46p-5f, -0x1.4cafe8p-7f } };
16
17