blob: fb79af4aea9878539198d38e5890822694fef7e6 [file] [log] [blame]
Elliott Hughesa0ee0782013-01-30 19:06:37 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughese332f652018-05-08 15:07:43 -070017#define _GNU_SOURCE
Elliott Hughesa0ee0782013-01-30 19:06:37 -080018#include <float.h>
19#include <math.h>
20
Elliott Hughes5ea0b062017-07-13 17:30:06 -070021#if !defined(__LP64__)
22
23// The BSD "long double" functions are broken when sizeof(long double) == sizeof(double).
24// Android works around those cases by replacing the broken functions with our own trivial stubs
25// that call the regular "double" function.
Elliott Hughesa0ee0782013-01-30 19:06:37 -080026
Elliott Hughesa0ee0782013-01-30 19:06:37 -080027long double copysignl(long double a1, long double a2) { return copysign(a1, a2); }
Elliott Hughesa0ee0782013-01-30 19:06:37 -080028long double fmaxl(long double a1, long double a2) { return fmax(a1, a2); }
29long double fmodl(long double a1, long double a2) { return fmod(a1, a2); }
30long double fminl(long double a1, long double a2) { return fmin(a1, a2); }
31int ilogbl(long double a1) { return ilogb(a1); }
Elliott Hughesa0ee0782013-01-30 19:06:37 -080032long long llrintl(long double a1) { return llrint(a1); }
jzha136f3ea0932015-06-12 09:15:02 -070033#if !defined(__i386__) // x86 has an assembler lrint/lrintl.
Elliott Hughesa0ee0782013-01-30 19:06:37 -080034long lrintl(long double a1) { return lrint(a1); }
jzha136f3ea0932015-06-12 09:15:02 -070035#endif
Elliott Hughesa0ee0782013-01-30 19:06:37 -080036long long llroundl(long double a1) { return llround(a1); }
37long lroundl(long double a1) { return lround(a1); }
Calin Juravle4d77c112014-03-14 17:56:46 +000038long double modfl(long double a1, long double* a2) { double i; double f = modf(a1, &i); *a2 = i; return f; }
Calin Juravle1abc9ff2014-04-17 18:17:32 +010039float nexttowardf(float a1, long double a2) { return nextafterf(a1, (float) a2); }
Elliott Hughesa0ee0782013-01-30 19:06:37 -080040long double roundl(long double a1) { return round(a1); }
Elliott Hughese332f652018-05-08 15:07:43 -070041void sincosl(long double x, long double* s, long double* c) { return sincos(x, (double*) s, (double*) c); }
Calin Juravle4d77c112014-03-14 17:56:46 +000042
43#endif // __LP64__
Elliott Hughes5ea0b062017-07-13 17:30:06 -070044
Andreas Gampe253a8302018-07-21 12:08:26 -070045// FreeBSD doesn't have ld128 implementations of powl or tgammal, so both LP32 and LP64 need these.
46long double powl(long double x, long double y) { return pow(x, y); }
Elliott Hughes5ea0b062017-07-13 17:30:06 -070047long double tgammal(long double x) { return tgamma(x); }