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.

17 lines
382 B

  1. #ifndef __RLDMATH__
  2. #define __RLDMATH__
  3. extern RLDDIValue RLDDIhdivtab[];
  4. #define HDIVIDE(a, b) RLDDIFMul24((a), RLDDIhdivtab[b])
  5. #ifdef USE_FLOAT
  6. #define TWOPOW32 ((double)(65536.0 * 65536.0))
  7. #define TWOPOW(N) (((N) < 32) ? ((double)(1UL << (N))) : \
  8. ((double)(1UL << (N - 32)) * TWOPOW32))
  9. extern double RLDDIConvertIEEE[];
  10. #endif
  11. #endif