Lines Matching +defs:p +defs:limit

24 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * (UInt32)ttt; …  argument
25 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits… argument
26 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits)); argument
27 #define GET_BIT2(p, i, A0, A1) IF_BIT_0(p) \ argument
33 #define REV_BIT(p, i, A0, A1) IF_BIT_0(p + i) \ argument
36 #define REV_BIT_VAR( p, i, m) REV_BIT(p, i, i += m; m += m, m += m; i += m; ) argument
37 #define REV_BIT_CONST(p, i, m) REV_BIT(p, i, i += m; , i += m * 2; ) argument
38 #define REV_BIT_LAST( p, i, m) REV_BIT(p, i, i -= m , ; ) argument
40 #define TREE_DECODE(probs, limit, i) \ argument
72 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK bound = (range >> kNumBitModelTotalBits) * (U… argument
75 #define GET_BIT2_CHECK(p, i, A0, A1) IF_BIT_0_CHECK(p) \ argument
78 #define GET_BIT_CHECK(p, i) GET_BIT2_CHECK(p, i, ; , ;) argument
79 #define TREE_DECODE_CHECK(probs, limit, i) \ argument
83 #define REV_BIT_CHECK(p, i, m) IF_BIT_0_CHECK(p + i) \ argument
164 #define LzmaProps_GetNumProbs(p) (NUM_BASE_PROBS + ((UInt32)LZMA_LIT_SIZE << ((p)->lc + (p)->lp))) argument
234 int Z7_FASTCALL LZMA_DECODE_REAL(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LZMA_DECODE_REAL()
616 static void Z7_FASTCALL LzmaDec_WriteRem(CLzmaDec *p, SizeT limit) in LzmaDec_WriteRem()
686 static int Z7_FASTCALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2()
715 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *buf, const Byte **bufOut) in LzmaDec_TryDummy()
825 unsigned limit, offset; in LzmaDec_TryDummy() local
907 void LzmaDec_InitDicAndState(CLzmaDec *p, BoolInt initDic, BoolInt initState) in LzmaDec_InitDicAndState()
922 void LzmaDec_Init(CLzmaDec *p) in LzmaDec_Init()
952 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, in LzmaDec_DecodeToDic()
1200 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, E… in LzmaDec_DecodeToBuf()
1240 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAllocPtr alloc) in LzmaDec_FreeProbs()
1246 static void LzmaDec_FreeDict(CLzmaDec *p, ISzAllocPtr alloc) in LzmaDec_FreeDict()
1252 void LzmaDec_Free(CLzmaDec *p, ISzAllocPtr alloc) in LzmaDec_Free()
1258 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size) in LzmaProps_Decode()
1284 static SRes LzmaDec_AllocateProbs2(CLzmaDec *p, const CLzmaProps *propNew, ISzAllocPtr alloc) in LzmaDec_AllocateProbs2()
1299 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAllocPtr alloc) in LzmaDec_AllocateProbs()
1308 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAllocPtr alloc) in LzmaDec_Allocate()
1344 CLzmaDec p; in LzmaDecode() local