Searched refs:fpround (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dguest_x86_defs.h119 extern UInt x86g_create_fpucw ( UInt fpround );
H A Dguest_amd64_defs.h119 extern ULong amd64g_create_fpucw ( ULong fpround );
H A Dguest_x86_helpers.c1467 emulation warning, and return (warn << 32) | fpround value.
1492 /* Given fpround as an IRRoundingMode value, create a suitable x87
1494 UInt x86g_create_fpucw ( UInt fpround )
1496 fpround &= 3;
1497 return 0x037F | (fpround << 10);
1578 UInt fpround; local
1612 fpround = (UInt)pair;
1615 vex_state->guest_FPROUND = fpround & 3;
H A Dguest_amd64_helpers.c1636 UInt fpround; local
1670 fpround = (UInt)pair & 0xFFFFFFFFULL;
1673 vex_state->guest_FPROUND = fpround & 3;
2004 emulation warning, and return (warn << 32) | fpround value.
2030 /* Given fpround as an IRRoundingMode value, create a suitable x87
2032 ULong amd64g_create_fpucw ( ULong fpround )
2034 fpround &= 3;
2035 return 0x037F | (fpround << 10);
2173 UInt fpround; local
2205 fpround
[all...]
/external/libpng/contrib/libtests/
H A Dtarith.c640 long long int fp, fpround; local
680 fpround = fp;
682 ok = fpround <= PNG_UINT_31_MAX &&
683 fpround >= -1-(long long int)PNG_UINT_31_MAX;
687 ok = 0, ++overflow, fpround = fp/*misleading*/;
704 else if (ok && result != fpround)

Completed in 156 milliseconds