Home
last modified time | relevance | path

Searched refs:rounding_mode (Results 1 – 6 of 6) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/include/machine/
Dfenv-softfloat.h110 fesetround(int rounding_mode) in fesetround() argument
112 (void) rounding_mode; in fesetround()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/mips/machine/
Dfenv-fp.h118 fesetround(int rounding_mode) in fesetround() argument
122 if (rounding_mode & ~_ROUND_MASK) in fesetround()
127 fcsr |= rounding_mode; in fesetround()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/powerpc/machine/
Dfenv-fp.h107 fesetround(int rounding_mode) in fesetround() argument
111 if (rounding_mode & ~_ROUND_MASK) in fesetround()
115 __r.__bits.__reg |= rounding_mode; in fesetround()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/include/
Dfenv.h52 int fesetround(int rounding_mode);
/picolibc-3.7.0-3.6.0/newlib/libc/include/
Dfenv.h38 int fesetround(int rounding_mode);
/picolibc-3.7.0-3.6.0/newlib/libc/machine/m68k/machine/
Dfenv-fp.h199 __declare_fenv_inline(int) fesetround(int rounding_mode) in fesetround() argument
205 fpcr = (fpcr & ~(3 << 4)) | ((rounding_mode & 3) << 4); in fesetround()