HomeSort by relevance Sort by last modified time
    Searched defs:RG (Results 1 - 6 of 6) sorted by null

  /external/lzma/Java/SevenZip/
LzmaBench.java 28 CRandomGenerator RG = new CRandomGenerator();
48 Value = RG.GetRnd();
58 CBitRandomGenerator RG = new CBitRandomGenerator();
72 int GetRndBit() { return RG.GetRnd(1); }
75 int len = RG.GetRnd(numBits);
76 return RG.GetRnd((int)len);
82 return (GetLogRandBits(4) << 10) | RG.GetRnd(10);
84 int GetLen1() { return RG.GetRnd(1 + (int)RG.GetRnd(2)); }
85 int GetLen2() { return RG.GetRnd(2 + (int)RG.GetRnd(2)); }
317 CBenchRandomGenerator rg = new CBenchRandomGenerator(); local
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 33 CRandomGenerator RG = new CRandomGenerator();
53 Value = RG.GetRnd();
63 CBitRandomGenerator RG = new CBitRandomGenerator();
78 UInt32 GetRndBit() { return RG.GetRnd(1); }
81 UInt32 len = RG.GetRnd(numBits);
82 return RG.GetRnd((int)len);
88 return (GetLogRandBits(4) << 10) | RG.GetRnd(10);
90 UInt32 GetLen1() { return RG.GetRnd(1 + (int)RG.GetRnd(2)); }
91 UInt32 GetLen2() { return RG.GetRnd(2 + (int)RG.GetRnd(2)); }
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 106 AM, CM, BK, CF, ES, FM, MD, NO, LR, RF, DB, SG, BH, HS, MT, DS, RG, CN, UUT, UUQ, UUP, UUH,
  /external/deqp/framework/common/
tcuTexture.cpp 136 static const Channel RG[] = { CHANNEL_0, CHANNEL_1, CHANNEL_ZERO, CHANNEL_ONE };
153 case TextureFormat::RG: return RG;
177 static const int RG[] = { 0, 1 };
194 case TextureFormat::RG: return RG;
244 case TextureFormat::RG: return 2;
486 case RG: numChannels = 2; break;
    [all...]
tcuTexture.hpp 49 RG,
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 99 CBaseRandomGenerator *RG;
101 void Set(CBaseRandomGenerator *rg) { RG = rg; }
119 UInt32 res = RG->GetRnd();
133 res = RG->GetRnd();
137 res = RG->GetRnd();
496 CBenchRandomGenerator rg; member in struct:CEncoderInfo
499 HRESULT Init(UInt32 dictionarySize, UInt32 numThreads, CBaseRandomGenerator *rg);
555 rg.Set(rgLoc);
709 CBaseRandomGenerator rg; local
    [all...]

Completed in 1094 milliseconds