tag | line | file | source code |
swd | 99 | include/linux/math_emu.h | #define SWD (*(struct swd *) &I387.swd) |
swd | 120 | include/linux/math_emu.h | #define set_IE() (I387.swd |= 1) |
swd | 121 | include/linux/math_emu.h | #define set_DE() (I387.swd |= 2) |
swd | 122 | include/linux/math_emu.h | #define set_ZE() (I387.swd |= 4) |
swd | 123 | include/linux/math_emu.h | #define set_OE() (I387.swd |= 8) |
swd | 124 | include/linux/math_emu.h | #define set_UE() (I387.swd |= 16) |
swd | 125 | include/linux/math_emu.h | #define set_PE() (I387.swd |= 32) |
swd | 127 | include/linux/math_emu.h | #define set_C0() (I387.swd |= 0x0100) |
swd | 128 | include/linux/math_emu.h | #define set_C1() (I387.swd |= 0x0200) |
swd | 129 | include/linux/math_emu.h | #define set_C2() (I387.swd |= 0x0400) |
swd | 130 | include/linux/math_emu.h | #define set_C3() (I387.swd |= 0x4000) |
swd | 73 | include/linux/sched.h | long swd; |
swd | 34 | include/linux/user.h | long swd; |
swd | 13 | kernel/math/compare.c | #define clear_Cx() (I387.swd &= ~0x4500) |
swd | 60 | kernel/math/emulate.c | if (I387.cwd & I387.swd & 0x3f) |
swd | 61 | kernel/math/emulate.c | I387.swd |= 0x8000; |
swd | 63 | kernel/math/emulate.c | I387.swd &= 0x7fff; |
swd | 150 | kernel/math/emulate.c | I387.swd &= 0x7f00; |
swd | 154 | kernel/math/emulate.c | I387.swd = 0x0000; |
swd | 164 | kernel/math/emulate.c | *(short *) &EAX = I387.swd; |
swd | 393 | kernel/math/emulate.c | I387.swd = 0x0000; |
swd | 399 | kernel/math/emulate.c | put_fs_word(I387.swd,(short *) address); |
swd | 489 | kernel/math/emulate.c | I387.swd = 0x0000; |
swd | 506 | kernel/math/emulate.c | tmp = I387.swd & 0xffffc7ff; |
swd | 507 | kernel/math/emulate.c | I387.swd += 0x00000800; |
swd | 508 | kernel/math/emulate.c | I387.swd &= 0x00003800; |
swd | 509 | kernel/math/emulate.c | I387.swd |= tmp; |
swd | 516 | kernel/math/emulate.c | tmp = I387.swd & 0xffffc7ff; |
swd | 517 | kernel/math/emulate.c | I387.swd += 0x00003800; |
swd | 518 | kernel/math/emulate.c | I387.swd &= 0x00003800; |
swd | 519 | kernel/math/emulate.c | I387.swd |= tmp; |
swd | 533 | kernel/math/emulate.c | i += I387.swd >> 11; |