Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

Int64 Impala::Util::Random::Next ( int  bits  )  [inline, private]

Definition at line 153 of file Random.h.

References mSeed.

Referenced by GetDouble(), and GetInt().

00154     {
00155         mSeed = (mSeed * 0x5DEECE66DLL + 0xBL) & ((1LL << 48) - 1);
00156         return (mSeed >> (48 - bits));
00157     }


Generated on Thu Jan 13 09:24:20 2011 for ImpalaSrc by  doxygen 1.5.1