Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
856 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. fpuarith.h
  5. Abstract:
  6. Common code for arithmetic floating-point operations.
  7. Author:
  8. 04-Oct-1995 BarryBo, Created
  9. Revision History:
  10. --*/
  11. #ifndef FPUARITH_H
  12. #define FPUARITH_H
  13. VOID
  14. ChangeFpPrecision(
  15. PCPUDATA cpu,
  16. INT NewPrecision
  17. );
  18. VOID
  19. FpAddCommon(
  20. PCPUDATA cpu,
  21. PFPREG l,
  22. PFPREG r
  23. );
  24. VOID
  25. FpDivCommon(
  26. PCPUDATA cpu,
  27. PFPREG dest,
  28. PFPREG l,
  29. PFPREG r
  30. );
  31. VOID
  32. FpMulCommon(
  33. PCPUDATA cpu,
  34. PFPREG l,
  35. PFPREG r
  36. );
  37. VOID
  38. FpSubCommon(
  39. PCPUDATA cpu,
  40. PFPREG dest,
  41. PFPREG l,
  42. PFPREG r
  43. );
  44. VOID
  45. FpComCommon(
  46. PCPUDATA cpu,
  47. PFPREG l,
  48. PFPREG r,
  49. BOOL fUnordered
  50. );
  51. #endif //FPUARITH_H