Home | History | Annotate | Download | only in programs

Lines Matching refs:U32

30 #include "util.h"      /* U32 */
60 static unsigned int RDG_rand(U32* src)
62 U32 rand32 = *src;
76 U32 u = 0;
79 U32 const weight = (U32)((double)(LTSIZE - u) * ld) + 1;
80 U32 const end = MIN(u+weight, LTSIZE);
88 static BYTE RDG_genChar(U32* seed, const litDistribTable lt)
90 U32 id = RDG_rand(seed) & LTMASK;
101 const U32 matchProba32 = (U32)(32768 * matchProba);
103 U32* seed = seedPtr;
134 U32 offset = RDG_RAND15BITS + 1;
135 if (offset > pos) offset = (U32)pos;