twopower.h

Go to the documentation of this file.
00001 /***********************************************************************
00002  *
00003  * twopower.h
00004  *
00005  * Copyright by:        Dr. Claudio Klein
00006  *                      X-ray Research GmbH, Hamburg
00007  *
00008  * Version:     1.0
00009  * Date:        16/01/1997
00010  *
00011  ***********************************************************************/
00012 
00013 static int two32[32] = {
00014                    0x00000001, 0x00000002, 0x00000004, 0x00000008,
00015                    0x00000010, 0x00000020, 0x00000040, 0x00000080,
00016                    0x00000100, 0x00000200, 0x00000400, 0x00000800,
00017                    0x00001000, 0x00002000, 0x00004000, 0x00008000,
00018                    0x00010000, 0x00020000, 0x00040000, 0x00080000,
00019                    0x00100000, 0x00200000, 0x00400000, 0x00800000,
00020                    0x01000000, 0x02000000, 0x04000000, 0x08000000,
00021                    0x10000000, 0x20000000, 0x40000000, 0x80000000 
00022            };
00023 
00024