Searched defs:fpucw (Results 1 - 2 of 2) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dguest_x86_helpers.c1464 /* fpucw[15:0] contains a x87 native format FPU control word.
1468 ULong x86g_check_fldcw ( UInt fpucw )
1470 /* Decide on a rounding mode. fpucw[11:10] holds it. */
1472 UInt rmode = (fpucw >> 10) & 3;
1477 if ((fpucw & 0x3F) != 0x3F) {
1482 if (((fpucw >> 8) & 3) != 3) {
1574 UInt fpucw = x87->env[FP_ENV_CTRL]; local
1610 pair = x86g_check_fldcw ( (UInt)fpucw );
H A Dguest_amd64_helpers.c1544 UInt fpucw = x87->env[FP_ENV_CTRL]; local
1580 pair = amd64g_check_fldcw ( (ULong)fpucw );
1913 /* fpucw[15:0] contains a x87 native format FPU control word.
1917 ULong amd64g_check_fldcw ( ULong fpucw )
1919 /* Decide on a rounding mode. fpucw[11:10] holds it. */
1921 ULong rmode = (fpucw >> 10) & 3;
1926 if ((fpucw & 0x3F) != 0x3F) {
1931 if (((fpucw >> 8) & 3) != 3) {
2081 UInt fpucw = x87->env[FPS_ENV_CTRL]; local
2115 pair = amd64g_check_fldcw ( (ULong)fpucw );
[all...]

Completed in 69 milliseconds