Lines Matching refs:GetRnd
23 public UInt32 GetRnd() in GetRnd() method in SevenZip.LzmaBench.CRandomGenerator
41 public UInt32 GetRnd(int numBits) in GetRnd() method in SevenZip.LzmaBench.CBitRandomGenerator
53 Value = RG.GetRnd(); in GetRnd()
78 UInt32 GetRndBit() { return RG.GetRnd(1); } in GetRndBit()
81 UInt32 len = RG.GetRnd(numBits); in GetLogRandBits()
82 return RG.GetRnd((int)len); in GetLogRandBits()
88 return (GetLogRandBits(4) << 10) | RG.GetRnd(10); in GetOffset()
90 UInt32 GetLen1() { return RG.GetRnd(1 + (int)RG.GetRnd(2)); } in GetLen1()
91 UInt32 GetLen2() { return RG.GetRnd(2 + (int)RG.GetRnd(2)); } in GetLen2()
99 Buffer[Pos++] = (Byte)RG.GetRnd(8); in Generate()
103 if (RG.GetRnd(3) == 0) in Generate()