Symbol: FE_INEXACT
headers/posix/arch/arm/fenv.h
45
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
headers/posix/arch/arm64/fenv.h
49
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
headers/posix/arch/ppc/fenv.h
65
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
headers/posix/arch/ppc/fenv.h
84
#define _ENABLE_MASK ((FE_DIVBYZERO | FE_INEXACT | FE_INVALID | \
headers/posix/arch/riscv64/fenv.h
58
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
headers/posix/arch/sparc64/fenv.h
147
if (__excepts & FE_INEXACT) {
headers/posix/arch/sparc64/fenv.h
51
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
headers/posix/arch/x86/fenv.h
65
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_DENORMAL | FE_INEXACT | \
headers/posix/arch/x86_64/fenv.h
55
#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_DENORMAL | FE_INEXACT | \
src/system/kernel/arch/x86/arch_int.cpp
190
else if ((status & FE_INEXACT) != 0)
src/system/libroot/posix/musl/math/fmaf.c
60
#if defined(FE_INEXACT) && defined(FE_UNDERFLOW)
src/system/libroot/posix/musl/math/fmaf.c
61
if (e < 0x3ff-126 && e >= 0x3ff-149 && fetestexcept(FE_INEXACT)) {
src/system/libroot/posix/musl/math/fmaf.c
62
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/fmaf.c
66
if (fetestexcept(FE_INEXACT))
src/system/libroot/posix/musl/math/fmaf.c
69
feraiseexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/fmal.c
200
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/fmal.c
201
feraiseexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/fmal.c
271
#if defined(FE_INEXACT) && defined(FE_UNDERFLOW)
src/system/libroot/posix/musl/math/fmal.c
272
int e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/fmal.c
273
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/fmal.c
278
#if defined(FE_INEXACT) && defined(FE_UNDERFLOW)
src/system/libroot/posix/musl/math/fmal.c
279
if (ilogbl(ret) < -16382 && fetestexcept(FE_INEXACT))
src/system/libroot/posix/musl/math/fmal.c
282
feraiseexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/llrintl.c
11
#elif defined(FE_INEXACT)
src/system/libroot/posix/musl/math/llrintl.c
24
e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/llrintl.c
27
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/lrint.c
29
#if LONG_MAX < 1U<<53 && defined(FE_INEXACT)
src/system/libroot/posix/musl/math/lrint.c
46
e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/lrint.c
49
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/lrintl.c
11
#elif defined(FE_INEXACT)
src/system/libroot/posix/musl/math/lrintl.c
24
e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/lrintl.c
27
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/nearbyint.c
12
e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/nearbyint.c
15
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/nearbyint.c
17
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/nearbyint.c
8
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/nearbyintf.c
10
e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/nearbyintf.c
13
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/nearbyintf.c
15
feclearexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/nearbyintf.c
6
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/nearbyintl.c
13
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/nearbyintl.c
17
e = fetestexcept(FE_INEXACT);
src/system/libroot/posix/musl/math/nearbyintl.c
20
#ifdef FE_INEXACT
src/system/libroot/posix/musl/math/nearbyintl.c
22
feclearexcept(FE_INEXACT);