Home
last modified time | relevance | path

Searched refs:FP_X_UFL (Results 1 – 22 of 22) sorted by relevance

/openbsd/sys/arch/alpha/include/
H A Dieeefp.h23 #define FP_AA_FLAGS (FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL | FP_X_IMP)
38 #define FP_X_UFL 0x08 /* underflow exception */ macro
/openbsd/regress/lib/libc/ieeefp/except/
H A Dexcept.c92 assert(fpgetsticky() & FP_X_UFL); in main()
97 fpsetmask(FP_X_UFL); in main()
/openbsd/sys/arch/sparc64/include/
H A Dieeefp.h13 #define FP_X_UFL 0x04 /* underflow exception */ macro
/openbsd/sys/arch/powerpc/include/
H A Dieeefp.h14 #define FP_X_UFL 0x04 /* underflow exception */ macro
/openbsd/sys/arch/hppa/include/
H A Dieeefp.h14 #define FP_X_UFL 0x02 /* underflow exception */ macro
/openbsd/sys/arch/arm64/include/
H A Dieeefp.h15 #define FP_X_UFL 0x08 /* underflow exception */ macro
/openbsd/sys/arch/powerpc64/include/
H A Dieeefp.h14 #define FP_X_UFL 0x04 /* underflow exception */ macro
/openbsd/sys/arch/sh/include/
H A Dieeefp.h16 #define FP_X_UFL 0x02 /* underflow exception */ macro
/openbsd/sys/arch/riscv64/include/
H A Dieeefp.h15 #define FP_X_UFL 0x02 /* underflow exception */ macro
/openbsd/sys/arch/amd64/include/
H A Dieeefp.h16 #define FP_X_UFL 0x10 /* underflow exception */ macro
/openbsd/sys/arch/i386/include/
H A Dieeefp.h16 #define FP_X_UFL 0x10 /* underflow exception */ macro
/openbsd/lib/libc/arch/aarch64/gen/
H A Dfpgetsticky.c36 #define FP_X_MASK (FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL | FP_X_IMP)
H A Dfpsetsticky.c36 #define FP_X_MASK (FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL | FP_X_IMP)
/openbsd/lib/libc/arch/arm/gen/
H A Dfpgetsticky.c25 #define FP_X_MASK (FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL | FP_X_IMP)
H A Dfpsetsticky.c25 #define FP_X_MASK (FP_X_INV | FP_X_DZ | FP_X_OFL | FP_X_UFL | FP_X_IMP)
/openbsd/sys/arch/arm/include/
H A Dieeefp.h29 #define FP_X_UFL (1 << FP_EXCEPT_UFL) /* underflow exception */ macro
/openbsd/sys/arch/mips64/include/
H A Dieeefp.h13 #define FP_X_UFL 0x02 /* underflow exception */ macro
/openbsd/sys/arch/m88k/include/
H A Dieeefp.h45 #define FP_X_UFL 0x04 /* underflow exception */ macro
/openbsd/sys/arch/alpha/alpha/
H A Dfp_complete.c362 fpcr |= (disables & (FP_X_IMP | FP_X_UFL)) << (61 - 3); in fp_c_to_fpcr_1()
366 FP_X_UFL == 8 && FP_X_IMP == 16 && FP_X_IOV == 32 && \ in fp_c_to_fpcr_1()
367 FP_X_UFL << (61 - 3) == FPCR_UNFD && \ in fp_c_to_fpcr_1()
/openbsd/sys/lib/libkern/
H A Dsoftfloat.h151 float_flag_underflow = FP_X_UFL,
/openbsd/lib/libc/softfloat/
H A Dsoftfloat.h105 float_flag_underflow = FP_X_UFL,
/openbsd/sys/arch/mips64/mips64/
H A Dfp_emulate.c373 else if (excbits & FP_X_UFL) in MipsFPTrap()