Lines Matching defs:p

22 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * ttt; if (code…  argument
23 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits… argument
24 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits)); argument
25 #define GET_BIT2(p, i, A0, A1) IF_BIT_0(p) \ argument
28 #define GET_BIT(p, i) GET_BIT2(p, i, ; , ;) argument
52 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK; bound = (range >> kNumBitModelTotalBits) * t… argument
55 #define GET_BIT2_CHECK(p, i, A0, A1) IF_BIT_0_CHECK(p) \ argument
58 #define GET_BIT_CHECK(p, i) GET_BIT2_CHECK(p, i, ; , ;) argument
113 #define LzmaProps_GetNumProbs(p) ((UInt32)LZMA_BASE_SIZE + (LZMA_LIT_SIZE << ((p)->lc + (p)->lp))) argument
134 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal()
454 static void MY_FAST_CALL LzmaDec_WriteRem(CLzmaDec *p, SizeT limit) in LzmaDec_WriteRem()
480 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2()
513 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *buf, SizeT inSize) in LzmaDec_TryDummy()
704 static void LzmaDec_InitRc(CLzmaDec *p, const Byte *data) in LzmaDec_InitRc()
711 void LzmaDec_InitDicAndState(CLzmaDec *p, Bool initDic, Bool initState) in LzmaDec_InitDicAndState()
727 void LzmaDec_Init(CLzmaDec *p) in LzmaDec_Init()
733 static void LzmaDec_InitStateReal(CLzmaDec *p) in LzmaDec_InitStateReal()
745 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, in LzmaDec_DecodeToDic()
866 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, E… in LzmaDec_DecodeToBuf()
906 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc) in LzmaDec_FreeProbs()
912 static void LzmaDec_FreeDict(CLzmaDec *p, ISzAlloc *alloc) in LzmaDec_FreeDict()
918 void LzmaDec_Free(CLzmaDec *p, ISzAlloc *alloc) in LzmaDec_Free()
924 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size) in LzmaProps_Decode()
950 static SRes LzmaDec_AllocateProbs2(CLzmaDec *p, const CLzmaProps *propNew, ISzAlloc *alloc) in LzmaDec_AllocateProbs2()
964 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) in LzmaDec_AllocateProbs()
973 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) in LzmaDec_Allocate()
999 CLzmaDec p; in LzmaDecode() local