Lines Matching refs:UInt32

16 #define kTopValue ((UInt32)1 << kNumTopBits)
117 #define LzmaProps_GetNumProbs(p) ((UInt32)LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((p)->lc + (p)->lp)))
153 UInt32 rep0 = p->reps[0], rep1 = p->reps[1], rep2 = p->reps[2], rep3 = p->reps[3]; in LzmaDec_DecodeReal()
162 UInt32 processedPos = p->processedPos; in LzmaDec_DecodeReal()
163 UInt32 checkDicSize = p->checkDicSize; in LzmaDec_DecodeReal()
167 UInt32 range = p->range; in LzmaDec_DecodeReal()
168 UInt32 code = p->code; in LzmaDec_DecodeReal()
173 UInt32 bound; in LzmaDec_DecodeReal()
248 UInt32 distance; in LzmaDec_DecodeReal()
314 UInt32 distance; in LzmaDec_DecodeReal()
328 UInt32 mask = 1; in LzmaDec_DecodeReal()
347 UInt32 t; in LzmaDec_DecodeReal()
349 t = (0 - ((UInt32)code >> 31)); /* (UInt32)((Int32)code >> 31) */ in LzmaDec_DecodeReal()
372 if (distance == (UInt32)0xFFFFFFFF) in LzmaDec_DecodeReal()
455 UInt32 rep0 = p->reps[0]; in LzmaDec_WriteRem()
480 UInt32 rem = p->prop.dicSize - p->processedPos; in LzmaDec_DecodeReal2()
508 UInt32 range = p->range; in LzmaDec_TryDummy()
509 UInt32 code = p->code; in LzmaDec_TryDummy()
517 UInt32 bound; in LzmaDec_TryDummy()
699 …p->code = ((UInt32)data[1] << 24) | ((UInt32)data[2] << 16) | ((UInt32)data[3] << 8) | ((UInt32)da… in LzmaDec_InitRc()
728 UInt32 numProbs = Literal + ((UInt32)LZMA_LIT_SIZE << (p->prop.lc + p->prop.lp)); in LzmaDec_InitStateReal()
729 UInt32 i; in LzmaDec_InitStateReal()
923 UInt32 dicSize; in LzmaProps_Decode()
929 dicSize = data[1] | ((UInt32)data[2] << 8) | ((UInt32)data[3] << 16) | ((UInt32)data[4] << 24); in LzmaProps_Decode()
949 UInt32 numProbs = LzmaProps_GetNumProbs(propNew); in LzmaDec_AllocateProbs2()