gcache.cpp File Reference

(r1785/r754)

#include "camtypes.h"
#include <iostream>
#include "gcache.h"

Go to the source code of this file.

Functions

UINT32 Hash (UINT32 val)


Function Documentation

UINT32 Hash UINT32  val  ) 
 

Definition at line 224 of file gcache.cpp.

00225 {
00226     val ^= (val <<  7) | (val >> 25);
00227     val ^= (val << 11) | (val >> 21);
00228     val ^= (val << 19) | (val >> 13);
00229     val ^= (val << 16) | (val >> 16);
00230     return val;
00231 }


Generated on Sat Nov 10 03:49:10 2007 for Camelot by  doxygen 1.4.4