OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fetestexcept
(Results
1 - 25
of
26
) sorted by null
1
2
/bionic/libm/include/
fenv.h
43
int
fetestexcept
(int);
/bionic/libm/upstream-freebsd/lib/msun/src/
s_lrint.c
54
if (
fetestexcept
(FE_INVALID))
fenv-softfloat.h
94
fetestexcept
(int __excepts)
function
e_sqrtl.c
140
if (!
fetestexcept
(FE_INEXACT)) { /* Quotient is exact. */
/development/ndk/platforms/android-L/include/
fenv.h
43
int
fetestexcept
(int);
/bionic/tests/
fenv_test.cpp
65
ASSERT_EQ(0,
fetestexcept
(FE_ALL_EXCEPT));
69
int raised =
fetestexcept
(FE_DIVBYZERO | FE_OVERFLOW);
80
ASSERT_EQ(0,
fetestexcept
(FE_ALL_EXCEPT));
math_test.cpp
796
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0);
798
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) != 0);
802
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0);
804
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) != 0);
808
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0);
810
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) != 0);
825
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0);
827
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0);
831
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0);
833
ASSERT_TRUE((
fetestexcept
(FE_ALL_EXCEPT) & FE_INEXACT) == 0)
[
all
...]
/development/ndk/platforms/android-3/header-patches/include/
fenv.h
95
int
fetestexcept
(int __excepts);
/development/ndk/sources/android/libportable/arch-mips64/
fenv.c
126
int WRAP(
fetestexcept
)(int flag) {
function
127
int ret = REAL(
fetestexcept
)(mips64_change_except(flag));
/development/ndk/sources/android/libportable/arch-x86/
fenv.c
142
WRAP(
fetestexcept
)(int excepts)
function
144
int ret = REAL(
fetestexcept
)(x86_change_except(excepts));
/development/ndk/platforms/android-9/arch-x86/include/
fenv.h
79
int
fetestexcept
(int excepts);
/external/libcxx/test/depr/depr.c.headers/
fenv_h.pass.cpp
67
static_assert((std::is_same<decltype(
fetestexcept
(0)), int>::value), "");
/development/ndk/sources/android/libportable/arch-x86_64/
fenv.c
146
int WRAP(
fetestexcept
)(int flag) {
function
147
int ret = REAL(
fetestexcept
)(x86_64_change_except(flag));
/development/ndk/sources/android/libportable/arch-arm/
fenv.c
66
int WRAP(
fetestexcept
)(int __excepts) {
function
/external/libcxx/test/numerics/cfenv/cfenv.syn/
cfenv.pass.cpp
67
static_assert((std::is_same<decltype(std::
fetestexcept
(0)), int>::value), "");
/bionic/libm/arm/
fenv.c
81
int
fetestexcept
(int __excepts) {
function
/bionic/libm/mips/
fenv.c
98
int
fetestexcept
(int __excepts) {
function
/development/ndk/platforms/android-3/arch-arm/include/
fenv.h
110
static __inline int
fetestexcept
(int __excepts) {
function
/bionic/libm/amd64/
fenv.c
178
* The
fetestexcept
() function determines which of a specified subset of the
183
fetestexcept
(int excepts)
function
/bionic/libm/arm64/
fenv.c
100
int
fetestexcept
(int excepts) {
function
/development/ndk/platforms/android-9/arch-mips/include/
fenv.h
159
static __inline int
fetestexcept
(int __excepts) {
function
/development/ndk/sources/android/libportable/arch-mips/
fenv.c
169
int WRAP(
fetestexcept
)(int __excepts) {
function
/bionic/libm/i387/
fenv.c
302
fetestexcept
(int excepts)
function
/bionic/libm/upstream-freebsd/lib/msun/ld128/
s_logl.c
555
if (
fetestexcept
(FE_UNDERFLOW))
664
if (
fetestexcept
(FE_UNDERFLOW))
/external/ltrace/etc/
libm.so.conf
407
; 75: 0000000000006840 25 FUNC GLOBAL DEFAULT 13
fetestexcept
@@GLIBC_2.2.5
Completed in 295 milliseconds
1
2