Lines Matching refs:UInt32
12 #define kTopValue ((UInt32)1 << kNumTopBits)
113 #define LzmaProps_GetNumProbs(p) ((UInt32)LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((p)->lc + (p)->lp)))
139 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; in LzmaDec_DecodeReal()
148 UInt32 processedPos = p->processedPos; in LzmaDec_DecodeReal()
149 UInt32 checkDicSize = p->checkDicSize; in LzmaDec_DecodeReal()
153 UInt32 range = p->range; in LzmaDec_DecodeReal()
154 UInt32 code = p->code; in LzmaDec_DecodeReal()
161 UInt32 bound; in LzmaDec_DecodeReal()
241 UInt32 distance; in LzmaDec_DecodeReal()
307 UInt32 distance; in LzmaDec_DecodeReal()
321 UInt32 mask = 1; in LzmaDec_DecodeReal()
346 UInt32 t; in LzmaDec_DecodeReal()
348 t = (0 - ((UInt32)code >> 31)); /* (UInt32)((Int32)code >> 31) */ in LzmaDec_DecodeReal()
371 if (distance == (UInt32)0xFFFFFFFF) in LzmaDec_DecodeReal()
462 UInt32 rep0 = p->reps[0]; in LzmaDec_WriteRem()
487 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
515 UInt32 range = p->range; in LzmaDec_TryDummy()
516 UInt32 code = p->code; in LzmaDec_TryDummy()
524 UInt32 bound; in LzmaDec_TryDummy()
706 …p->code = ((UInt32)data[1] << 24) | ((UInt32)data[2] << 16) | ((UInt32)data[3] << 8) | ((UInt32)da… in LzmaDec_InitRc()
735 UInt32 numProbs = Literal + ((UInt32)LZMA_LIT_SIZE << (p->prop.lc + p->prop.lp)); in LzmaDec_InitStateReal()
736 UInt32 i; in LzmaDec_InitStateReal()
926 UInt32 dicSize; in LzmaProps_Decode()
932 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
952 UInt32 numProbs = LzmaProps_GetNumProbs(propNew); in LzmaDec_AllocateProbs2()