Math64.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:14k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       Math64.h
  3.  
  4.      Contains:   64-bit integer math Interfaces.
  5.  
  6.      Version:    Technology: System 7.5
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1994-2001 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:      For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. #ifndef __MATH64__
  18. #define __MATH64__
  19. #ifndef __CONDITIONALMACROS__
  20. #include "ConditionalMacros.h"
  21. #endif
  22. #ifndef __MACTYPES__
  23. #include "MacTypes.h"
  24. #endif
  25. #if PRAGMA_ONCE
  26. #pragma once
  27. #endif
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. #if PRAGMA_IMPORT
  32. #pragma import on
  33. #endif
  34. #if PRAGMA_STRUCT_ALIGN
  35.     #pragma options align=mac68k
  36. #elif PRAGMA_STRUCT_PACKPUSH
  37.     #pragma pack(push, 2)
  38. #elif PRAGMA_STRUCT_PACK
  39.     #pragma pack(2)
  40. #endif
  41. /*--------------------------------------------------------------------------------
  42.                 These routines are intended to provide C software support for
  43.                 64 bit integer types.  Their behavior should mimic anticipated
  44.                 64 bit hardware. This implementation should replace use of the
  45.                 "wide" type found in PowerPC.
  46.     The following routines are available for performing math on 64-bit integers:
  47.     
  48.     S64Max
  49.                 Returns the largest representable SInt64.
  50.     S64Min
  51.                 Returns the smallest (i.e. most negative) SInt64.  Note: the negative
  52.                 (absolute value) of this number is not representable in an SInt64.
  53.                 That means that S64Negate(S64Min) is not representable (in fact,
  54.                 it returns S64Min).
  55.     S64Add
  56.                 Adds two integers, producing an integer result.  If an overflow
  57.                 occurs the result is congruent mod (2^64) as if the operands and
  58.                 result were unsigned.  No overflow is signaled.
  59.     
  60.     S64Subtract
  61.                 Subtracts two integers, producing an integer result.  If an overflow
  62.                 occurs the result is congruent mod (2^64) as if the operands and
  63.                 result were unsigned.  No overflow is signaled.
  64.     S64Negate
  65.                 Returns the additive inverse of a signed number (i.e. it returns
  66.                 0 - the number).  S64Negate (S64Min) is not representable (in fact,
  67.                 it returns S64Min).
  68.     
  69.     S64Absolute
  70.                 Returns the absolute value of the number (i.e. the number if
  71.                 it is positive, or 0 - the number if it is negative).
  72.                 See S64Negate above.
  73.                 
  74.     S64Multiply
  75.                 Multiplies two signed numbers, producing a signed result.  Overflow
  76.                 is ignored and the low-order part of the product is returned.  The
  77.                 sign of the result is not guaranteed to be correct if the magnitude
  78.                 of the product is not representable.
  79.                 
  80.     S64Div
  81.                 Divides dividend by divisor, returning the quotient.
  82.                 
  83.     S64Mod
  84.                 Returns the remainder of divide of dividend by divisor.  The sign of
  85.                 the remainder is the same as the sign of the dividend (i.e., it takes
  86.                 the absolute values of the operands, does the division, then fixes
  87.                 the sign of the quotient and remainder).
  88.     S64Divide
  89.                 Divides dividend by divisor, returning the quotient.  The remainder
  90.                 is returned in *remainder if remainder (the pointer) is non-NULL.
  91.                 The sign of the remainder is the same as the sign of the dividend
  92.                 (i.e. it takes the absolute values of the operands, does the division,
  93.                 then fixes the sign of the quotient and remainder).  If the divisor
  94.                 is zero, then S64Max() will be returned (or S64Min() if the dividend
  95.                 is negative), and the remainder will be the dividend; no error is
  96.                 reported.
  97.     
  98.     S64Set
  99.                 Given an SInt32, returns an SInt64 with the same value.  Use this
  100.                 routine instead of coding 64-bit constants (at least when the
  101.                 constant will fit in an SInt32).
  102.     
  103.     S64SetU
  104.                 Given a UInt32, returns a SInt64 with the same value.
  105.                 
  106.     S64Set
  107.                 Given an SInt64, returns an SInt32 by discarding the high-order
  108.                 32 bits.
  109.     
  110.     S64Compare
  111.                 Given two signed numbers, left and right, returns an
  112.                 SInt32 that compares with zero the same way left compares with
  113.                 right.  If you wanted to perform a comparison on 64-bit integers
  114.                 of the form:
  115.                         operand_1 <operation> operand_2
  116.                 then you could use an expression of the form:
  117.                         xxxS64Compare(operand_1,operand_2) <operation> 0
  118.                 to test for the same condition.
  119.                 
  120.                 CAUTION: DO NOT depend on the exact value returned by this routine.
  121.                 Only the sign (i.e. positive, zero, or negative) of the result is
  122.                 guaranteed.
  123.     S64And, S64Or, S64Eor and S64Not
  124.     
  125.                 Return Boolean (1 or 0) depending on the outcome of the logical
  126.                 operation.
  127.     S64BitwiseAnd, S64BitwiseOr, S64BitwiseEor and S64BitwiseNot
  128.     
  129.                 Return the Bitwise result.
  130.                 
  131.     S64ShiftRight and S64ShiftLeft
  132.     
  133.                 The lower 7 bits of the shift argument determines the amount of 
  134.                 shifting.  S64ShiftRight is an arithmetic shift while U64ShiftRight
  135.                 is a logical shift.
  136.     SInt64ToLongDouble
  137.                 
  138.                 Converts SInt64 to long double.  Note all SInt64s fit exactly into 
  139.                 long doubles, thus, the binary -> decimal conversion routines
  140.                 in fp.h can be used to achieve SInt64 -> long double -> decimal
  141.                 conversions.
  142.                 
  143.     LongDoubleToSInt64
  144.     
  145.                 Converts a long double to a SInt64.  Any decimal string that fits
  146.                 into a SInt64 can be converted exactly into a long double, using the
  147.                 conversion routines found in fp.h.  Then this routine can be used
  148.                 to complete the conversion to SInt64.
  149.                 
  150.     SInt64ToWide
  151.     
  152.                 Converts a SInt64 to a wide struct.  If SInt64 is implemented
  153.                 as a typedef of wide, the marco does nothing. If SInt64 is 
  154.                 implememnted as a long long, it casts the long long into a 
  155.                 wide struct.
  156.     
  157.     WideToSInt64
  158.     
  159.                 Converts a wide struct into a SInt64.  If SInt64 is implemented
  160.                 as a typedef of wide, the marco does nothing. If SInt64 is 
  161.                 implememnted as a long long, it reads the struct into a long long.
  162.     
  163.     
  164.     The corresponding UInt64 routines are also included.
  165.     
  166. --------------------------------------------------------------------------------*/
  167. #if TYPE_LONGLONG
  168. #ifdef __MRC__
  169.     #define S64Max() 9223372036854775807LL
  170. #else
  171.    #define S64Max() 9223372036854775807
  172. #endif
  173. #define S64Min() (-S64Max() - 1)
  174. #define S64Add(x, y) ((SInt64) (x) + (SInt64) (y))
  175. #define S64Subtract(x, y) ((SInt64) (x) - (SInt64) (y))
  176. #define S64Negate(x) (-(SInt64) (x))
  177. #define S64Absolute(x) absll((SInt64) (x))
  178. #define S64Multiply(x, y) ((SInt64) (x) * (SInt64) (y))
  179. #define S64Div(x, y) ((SInt64) (x) / (SInt64) (y))
  180. #define S64Mod(x, y) ((SInt64) (x) % (SInt64) (y))
  181. #define S64Set(x) ((SInt64) (x))
  182. #define S64SetU(x) ((SInt64) (x))
  183. #define S32Set(x) ((SInt32) (x))
  184. #define S64And(x, y) ((Boolean)((SInt64) (x) && (SInt64) (y)))
  185. #define S64Or(x, y) ((Boolean)((SInt64) (x) || (SInt64) (y)))
  186. #define S64Eor(x, y) ((Boolean)((SInt64) (x) ^ (SInt64) (y)))
  187. #define S64Not(x) ((Boolean)(!(SInt64) (x)))
  188. #define S64BitwiseAnd(x, y) ((SInt64) (x) & (SInt64) (y))
  189. #define S64BitwiseOr(x, y) ((SInt64) (x) | (SInt64) (y))
  190. #define S64BitwiseEor(x, y) (((SInt64) (x) & (~(SInt64) (y))) | ((~(SInt64) (x)) & (SInt64) (y)))
  191. #define S64BitwiseNot(x) (~(SInt64) (x))
  192. #define S64ShiftRight(x, y) ((SInt64) (x) >> (UInt32) (y))
  193. #define S64ShiftLeft(x, y) ((SInt64) (x) << (UInt32) (y))
  194. #define SInt64ToLongDouble(x) ((long double)(x))
  195. #define LongDoubleToSInt64(x) ((SInt64)(x))
  196. #ifdef __MRC__
  197.     #define U64Max() 0xffffffffffffffffULL
  198. #else
  199.    #define U64Max() 0xffffffffffffffff
  200. #endif
  201. #define U64Add(x, y) ((UInt64) (x) + (UInt64) (y))
  202. #define U64Subtract(x, y) ((UInt64) (x) - (UInt64) (y))
  203. #define U64Multiply(x, y) ((UInt64) (x) * (UInt64) (y))
  204. #define U64Div(x, y) ((UInt64) (x) / (UInt64) (y))
  205. #define U64Mod(x, y) ((UInt64) (x) % (UInt64) (y))
  206. #define U64Set(x) ((UInt64) (x))
  207. #define U64SetU(x) ((UInt64) (x))
  208. #define U32SetU(x) ((UInt32) (x))
  209. #define U64And(x, y) ((Boolean)((UInt64) (x) && (UInt64) (y)))
  210. #define U64Or(x, y) ((Boolean)((UInt64) (x) || (UInt64) (y)))
  211. #define U64Eor(x, y) ((Boolean)((UInt64) (x) ^ (UInt64) (y)))
  212. #define U64Not(x) ((Boolean)(!(UInt64) (x)))
  213. #define U64BitwiseAnd(x, y) ((UInt64) (x) & (UInt64) (y))
  214. #define U64BitwiseOr(x, y) ((UInt64) (x) | (UInt64) (y))
  215. #define U64BitwiseEor(x, y) (((UInt64) (x) & (~(UInt64) (y))) | ((~(UInt64) (x)) & (UInt64) (y)))
  216. #define U64BitwiseNot(x) (~(UInt64) (x))
  217. #define U64ShiftRight(x, y) ((UInt64) (x) >> (UInt32) (y))
  218. #define U64ShiftLeft(x, y) ((UInt64) (x) << (UInt32) (y))
  219. #define UInt64ToLongDouble(x) ((long double)(x))
  220. #define LongDoubleToUInt64(x) ((UInt64)(x))
  221. #define UInt64ToSInt64(x) ((SInt64)(x))
  222. #define SInt64ToUInt64(x) ((UInt64)(x))
  223. #else
  224. EXTERN_API_C( SInt64 ) S64Max(void );
  225. EXTERN_API_C( SInt64 ) S64Min(void );
  226. EXTERN_API_C( SInt64 ) S64Add(SInt64 x, SInt64 y);
  227. EXTERN_API_C( SInt64 ) S64Subtract(SInt64 left, SInt64 right);
  228. EXTERN_API_C( SInt64 ) S64Negate(SInt64 value);
  229. EXTERN_API_C( SInt64 ) S64Absolute(SInt64 value);
  230. EXTERN_API_C( SInt64 ) S64Multiply(SInt64 xparam, SInt64 yparam);
  231. #define S64Div(dividend, divisor) S64Divide(dividend, divisor, NULL)
  232. #if CALL_NOT_IN_CARBON
  233. EXTERN_API_C( SInt64 ) S64Mod(SInt64 dividend, SInt64 divisor);
  234. #endif  /* CALL_NOT_IN_CARBON */
  235. EXTERN_API_C( SInt64 ) S64Divide(SInt64 dividend, SInt64 divisor, SInt64 *remainder);
  236. EXTERN_API_C( SInt64 ) S64Set(SInt32 value);
  237. EXTERN_API_C( SInt64 ) S64SetU(UInt32 value);
  238. EXTERN_API_C( SInt32 ) S32Set(SInt64 value);
  239. EXTERN_API_C( Boolean ) S64And(SInt64 left, SInt64 right);
  240. EXTERN_API_C( Boolean ) S64Or(SInt64 left, SInt64 right);
  241. EXTERN_API_C( Boolean ) S64Eor(SInt64 left, SInt64 right);
  242. EXTERN_API_C( Boolean ) S64Not(SInt64 value);
  243. EXTERN_API_C( SInt64 ) S64BitwiseAnd(SInt64 left, SInt64 right);
  244. EXTERN_API_C( SInt64 ) S64BitwiseOr(SInt64 left, SInt64 right);
  245. EXTERN_API_C( SInt64 ) S64BitwiseEor(SInt64 left, SInt64 right);
  246. EXTERN_API_C( SInt64 ) S64BitwiseNot(SInt64 value);
  247. EXTERN_API_C( SInt64 ) S64ShiftRight(SInt64 value, UInt32 shift);
  248. EXTERN_API_C( SInt64 ) S64ShiftLeft(SInt64 value, UInt32 shift);
  249. #if !TARGET_RT_MAC_MACHO
  250. /*
  251.     "long double" means 128 bit type on PowerPC and 80-bit type on 68K
  252. */
  253. EXTERN_API_C( long double ) SInt64ToLongDouble(SInt64 value);
  254. EXTERN_API_C( SInt64 ) LongDoubleToSInt64(long double value);
  255. #else
  256. #define SInt64ToLongDouble(x) ((long double)(x))
  257. #define LongDoubleToSInt64(x) ((SInt64)(x))
  258. #endif  /* !TARGET_RT_MAC_MACHO */
  259. EXTERN_API_C( UInt64 ) U64Max(void );
  260. EXTERN_API_C( UInt64 ) U64Add(UInt64 x, UInt64 y);
  261. EXTERN_API_C( UInt64 ) U64Subtract(UInt64 left, UInt64 right);
  262. EXTERN_API_C( UInt64 ) U64Multiply(UInt64 xparam, UInt64 yparam);
  263. #define U64Div(dividend, divisor) U64Divide(dividend, divisor, NULL)
  264. #if CALL_NOT_IN_CARBON
  265. EXTERN_API_C( UInt64 ) U64Mod(UInt64 dividend, UInt64 divisor);
  266. #endif  /* CALL_NOT_IN_CARBON */
  267. EXTERN_API_C( UInt64 ) U64Divide(UInt64 dividend, UInt64 divisor, UInt64 *remainder);
  268. EXTERN_API_C( UInt64 ) U64Set(SInt32 value);
  269. EXTERN_API_C( UInt64 ) U64SetU(UInt32 value);
  270. EXTERN_API_C( UInt32 ) U32SetU(UInt64 value);
  271. EXTERN_API_C( Boolean ) U64And(UInt64 left, UInt64 right);
  272. EXTERN_API_C( Boolean ) U64Or(UInt64 left, UInt64 right);
  273. EXTERN_API_C( Boolean ) U64Eor(UInt64 left, UInt64 right);
  274. EXTERN_API_C( Boolean ) U64Not(UInt64 value);
  275. EXTERN_API_C( UInt64 ) U64BitwiseAnd(UInt64 left, UInt64 right);
  276. EXTERN_API_C( UInt64 ) U64BitwiseOr(UInt64 left, UInt64 right);
  277. EXTERN_API_C( UInt64 ) U64BitwiseEor(UInt64 left, UInt64 right);
  278. EXTERN_API_C( UInt64 ) U64BitwiseNot(UInt64 value);
  279. EXTERN_API_C( UInt64 ) U64ShiftRight(UInt64 value, UInt32 shift);
  280. EXTERN_API_C( UInt64 ) U64ShiftLeft(UInt64 value, UInt32 shift);
  281. #if !TARGET_RT_MAC_MACHO
  282. /*
  283.     "long double" means 128 bit type on PowerPC and 80-bit type on 68K
  284. */
  285. EXTERN_API_C( long double ) UInt64ToLongDouble(UInt64 value);
  286. EXTERN_API_C( UInt64 ) LongDoubleToUInt64(long double value);
  287. #else
  288. #define UInt64ToLongDouble(x) ((long double)(x))
  289. #define LongDoubleToUInt64(x) ((UInt64)(x))
  290. #endif  /* !TARGET_RT_MAC_MACHO */
  291. EXTERN_API_C( SInt64 ) UInt64ToSInt64(UInt64 value);
  292. EXTERN_API_C( UInt64 ) SInt64ToUInt64(SInt64 value);
  293. #endif  /* TYPE_LONGLONG */
  294. EXTERN_API_C( SInt32 ) S64Compare(SInt64 left, SInt64 right);
  295. EXTERN_API_C( SInt32 ) U64Compare(UInt64 left, UInt64 right);
  296. // sam says you want these to be dispatched routines
  297. #if TARGET_OS_WIN32 && TYPE_LONGLONG
  298. #define S64Compare(left,right) ((int)(left - right))
  299. #define U64Compare(left,right) ((int)(left - right))
  300. #endif
  301. /* 
  302.    Functions to convert between [Unsigned]Wide and [S|U]Int64 types.
  303.   
  304.    These functions are necessary if source code which uses both
  305.    wide and SInt64 is to compile under a compiler that supports
  306.    long long.
  307. */
  308. #if TYPE_LONGLONG 
  309.    #define SInt64ToWide(x)         (*((wide*)(&x)))
  310.    #define WideToSInt64(x)         (*((SInt64*)(&x)))
  311.  #define UInt64ToUnsignedWide(x) (*((UnsignedWide*)(&x)))
  312.    #define UnsignedWideToUInt64(x) (*((UInt64*)(&x)))
  313. #else
  314.    #define SInt64ToWide(x)         (x)
  315.     #define WideToSInt64(x)         (x)
  316.     #define UInt64ToUnsignedWide(x) (x)
  317.     #define UnsignedWideToUInt64(x) (x)
  318. #endif
  319. #if PRAGMA_STRUCT_ALIGN
  320.     #pragma options align=reset
  321. #elif PRAGMA_STRUCT_PACKPUSH
  322.     #pragma pack(pop)
  323. #elif PRAGMA_STRUCT_PACK
  324.     #pragma pack()
  325. #endif
  326. #ifdef PRAGMA_IMPORT_OFF
  327. #pragma import off
  328. #elif PRAGMA_IMPORT
  329. #pragma import reset
  330. #endif
  331. #ifdef __cplusplus
  332. }
  333. #endif
  334. #endif /* __MATH64__ */