Merge "<math.h>: more use of __RENAME_LDBL." am: 4e22f30960 am: 9f9d394178

Original change: https://android-review.googlesource.com/c/platform/bionic/+/2605643

Change-Id: Iac2ae0b4184b403833a2e741e6b952bd379855b3
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot 2023-06-07 01:25:16 +00:00 committed by Automerger Merge Worker
commit 67dd8c0bc2

View file

@ -177,10 +177,9 @@ double scalbn(double __x, int __exponent);
float scalbnf(float __x, int __exponent); float scalbnf(float __x, int __exponent);
long double scalbnl(long double __x, int __exponent) __RENAME_LDBL(scalbn, 3, 3); long double scalbnl(long double __x, int __exponent) __RENAME_LDBL(scalbn, 3, 3);
/* TODO: once the NDK only supports >= 18, use __RENAME_LDBL here too. */ double scalbln(double __x, long __exponent);
double scalbln(double __x, long __exponent) __INTRODUCED_IN_X86_NO_GUARD_FOR_NDK(18); float scalblnf(float __x, long __exponent);
float scalblnf(float __x, long __exponent) __INTRODUCED_IN_X86_NO_GUARD_FOR_NDK(18); long double scalblnl(long double __x, long __exponent) __RENAME_LDBL(scalbln, 9, 18);
long double scalblnl(long double __x, long __exponent) __INTRODUCED_IN_X86_NO_GUARD_FOR_NDK(18);
double cbrt(double __x); double cbrt(double __x);
float cbrtf(float __x); float cbrtf(float __x);
@ -282,7 +281,7 @@ double nextafter(double __x, double __y);
float nextafterf(float __x, float __y); float nextafterf(float __x, float __y);
long double nextafterl(long double __x, long double __y) __RENAME_LDBL_NO_GUARD_FOR_NDK(nextafter, 3, 21); long double nextafterl(long double __x, long double __y) __RENAME_LDBL_NO_GUARD_FOR_NDK(nextafter, 3, 21);
double nexttoward(double __x, long double __y) __INTRODUCED_IN_NO_GUARD_FOR_NDK(18); double nexttoward(double __x, long double __y);
float nexttowardf(float __x, long double __y); float nexttowardf(float __x, long double __y);
long double nexttowardl(long double __x, long double __y) __RENAME_LDBL_NO_GUARD_FOR_NDK(nexttoward, 18, 18); long double nexttowardl(long double __x, long double __y) __RENAME_LDBL_NO_GUARD_FOR_NDK(nexttoward, 18, 18);