int64test.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

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