Home | History | Annotate | Download | only in LzmaSpec

Lines Matching defs:UInt32

18   typedef unsigned long UInt32;

20 typedef unsigned int UInt32;
67 UInt32 Pos;
68 UInt32 Size;
78 void Create(UInt32 dictSize)
99 Byte GetByte(UInt32 dist) const
104 void CopyMatch(UInt32 dist, unsigned len)
110 bool CheckDistance(UInt32 dist) const
134 UInt32 Range;
135 UInt32 Code;
147 UInt32 DecodeDirectBits(unsigned numBits);
167 #define kTopValue ((UInt32)1 << 24)
178 UInt32 CRangeDecoder::DecodeDirectBits(unsigned numBits)
180 UInt32 res = 0;
185 UInt32 t = 0 - ((UInt32)Code >> 31);
202 UInt32 bound = (Range >> kNumBitModelTotalBits) * v;
325 UInt32 dictSize;
326 UInt32 dictSizeInProperties;
339 dictSizeInProperties |= (UInt32)properties[i + 1] << (8 * i);
362 LitProbs = new CProb[(UInt32)0x300 << (lc + lp)];
367 UInt32 num = (UInt32)0x300 << (lc + lp);
368 for (UInt32 i = 0; i < num; i++)
372 void DecodeLiteral(unsigned state, UInt32 rep0)
380 CProb *probs = &LitProbs[(UInt32)0x300 * litState];
424 UInt32 dist = ((2 | (posSlot & 1)) << numDirectBits);
472 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
513 UInt32 dist;