exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / trigl.h
blobac3e3ad5ea3ba35e691316e76e9e1c670d35c034
1 /* Declarations for sinl, cosl, tanl internal functions. -*- coding: utf-8 -*-
2 Contributed by Paolo Bonzini
4 Copyright 2002-2003, 2009-2024 Free Software Foundation, Inc.
6 This file is part of gnulib.
8 This file is free software: you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as
10 published by the Free Software Foundation, either version 3 of the
11 License, or (at your option) any later version.
13 This file is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with this program. If not, see <https://www.gnu.org/licenses/>. */
21 /* Decompose x into x = k * π/2 + r
22 where k is an integer and abs(r) <= π/4.
23 Store r in y[0] and y[1] (main part in y[0], small additional part in
24 y[1], r = y[0] + y[1]).
25 Return k. */
26 extern int ieee754_rem_pio2l (long double x, long double *y);
28 /* Compute and return sinl (x + y), where x is the main part and y is the
29 small additional part of a floating-point number.
30 iy is 0 when y is known to be 0.0, otherwise iy is 1. */
31 extern long double kernel_sinl (long double x, long double y, int iy);
33 /* Compute and return cosl (x + y), where x is the main part and y is the
34 small additional part of a floating-point number. */
35 extern long double kernel_cosl (long double x, long double y);