int64test.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include "hxtypes.h"
  38. int main()
  39. {
  40.     //Test default ctors
  41.     INT64 a;
  42.     //Test assignment.
  43. #ifndef _SYMBIAN
  44.     a = -0x11223344556677;
  45. #else
  46.     //symbian doesn't have a native 64-bit type so we can assign
  47.     //a large constant like above;
  48.     a = -0x11223344;
  49.     a = a<<2;
  50. #endif    
  51.     
  52.     //Test copy ctors
  53.     INT64 c = a;
  54.     //Test compares
  55.     if( c!=a )
  56.     {
  57.         fprintf( stderr, "c!=a  FAILn" );
  58.         exit(1);
  59.     }
  60.     if( c==a )
  61.     {
  62.     }
  63.     else
  64.     {
  65.         fprintf( stderr, "c==a   FAILn" );
  66.         exit(1);
  67.     }
  68.     
  69.     //Test some math stuff.
  70.     INT64 foo = 0xFFFFFFFF; //32-bits of stuff.
  71.     INT64 bar = foo*2; //Too many for 32-bits.
  72.     bar = bar>>1;
  73.     if( bar != foo )
  74.     {
  75.         fprintf( stderr, "bar!=foo  FAILn" );
  76.         exit(1);
  77.     }
  78.     bar = foo*2;
  79.     foo = foo<<1;
  80.     if( bar<foo || bar>foo)
  81.     {
  82.         fprintf( stderr, "bar<foo || bar>foo  FAILn" );
  83.         exit(1);
  84.     }
  85.     foo = 0xFFFFFFFF;
  86.     bar = foo;
  87.     bar >>= 1;
  88.     bar *= 2;
  89.     bar = bar | 0x3;
  90.     bar = bar & 0xFFFFFFFF;
  91.     if( bar!=foo)
  92.     {
  93.         fprintf( stderr, "and or test failed.  FAILn" );
  94.         exit(1);
  95.     }
  96.     if( bar==foo )
  97.     {
  98.     }
  99.     else
  100.     {
  101.         fprintf( stderr, "Should be the same FAILn" );
  102.         exit(1);
  103.     }
  104.     //Only 31 because we are testing signed 64-bit nums...
  105.     foo = 0xFFFFFFFF;
  106.     bar = 0xFFFFFFFF;
  107.     bar <<=31;
  108.     foo = foo << 31;
  109.     if( bar != foo )
  110.     {
  111.         fprintf( stderr, "High bit test FAILn" );
  112.         exit(1);
  113.     }
  114.     bar = bar >> 31;
  115.     foo = 0xFFFFFFFF;
  116.     if( bar != foo )
  117.     {
  118.         fprintf( stderr, "big shift test  FAILn" );
  119.         exit(1);        
  120.     }
  121.     
  122.     foo = 0xFFFFFF;
  123.     bar = 0xFFFFFF;
  124.     bar = bar << 24; //0xFFFFFF000000
  125.     fprintf( stderr, "bar should be 0xFFFFFF000000 is %p%pn", bar.High(), bar.Low() ); 
  126.     bar = bar & 0xFFFFFF; //0x0
  127.     fprintf( stderr, "bar should be 0x0 is %p%pn", bar.High(), bar.Low() ); 
  128.     if( bar != 0 )
  129.     {
  130.         fprintf( stderr, "shift-or test FAILn" );
  131.         exit(1);
  132.     }
  133.     
  134.     bar = bar + 4;
  135.     bar = 0xABCDEF;
  136.     int nInt = INT64_TO_UINT32(bar);
  137.     if( nInt != 0xABCDEF )
  138.     {
  139.         fprintf( stderr, "Casting failed....n" ); 
  140.     }
  141.     
  142.     bar = 0x0f;
  143.     fprintf( stderr, "bar should be 0x0f is %pn", bar.Low()  ); 
  144.     foo = 0xf0;
  145.     fprintf( stderr, "foo should be 0xf0 is %pn", foo.Low()  ); 
  146.     bar = bar|foo;
  147.     fprintf( stderr, "bar should now be 0xff is %pn", bar.Low() ); 
  148.     if( bar != 0xff )
  149.     {
  150.         fprintf( stderr, "small OR failed....n" );
  151.         exit(1);
  152.     }
  153.     
  154.     bar = 0xFF;
  155.     foo = 0xFF00;
  156.     bar = bar << 32; //0xFF 00000000
  157.     bar = foo | bar; //0xFF 0000FF00
  158.     if( bar.Low() != 0xFF00 )
  159.     {
  160.         fprintf( stderr, "Low or failed....n" );
  161.         exit(1);
  162.     }
  163.     if( bar.High() != 0xFF )
  164.     {
  165.         fprintf( stderr, "High or failed....n" );
  166.         exit(1);
  167.     }
  168.     
  169.     
  170.     
  171.     fprintf( stderr, "Int 64 test PASSEDn" ); 
  172.     return 0;
  173. }