Lines Matching refs:Byte
134 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal()
144 Byte *dic = p->dic; in LzmaDec_DecodeReal()
152 const Byte *buf = p->buf; in LzmaDec_DecodeReal()
204 dic[dicPos++] = (Byte)symbol; in LzmaDec_DecodeReal()
407 Byte *dest = dic + dicPos; in LzmaDec_DecodeReal()
409 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal()
415 *(dest) = (Byte)*(dest + src); in LzmaDec_DecodeReal()
458 Byte *dic = p->dic; 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()
517 const Byte *bufLimit = buf + inSize; in LzmaDec_TryDummy()
704 static void LzmaDec_InitRc(CLzmaDec *p, const Byte *data) in LzmaDec_InitRc()
745 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, in LzmaDec_DecodeToDic()
801 const Byte *bufLimit; in LzmaDec_DecodeToDic()
866 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, E… in LzmaDec_DecodeToBuf()
924 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size) in LzmaProps_Decode()
927 Byte d; in LzmaProps_Decode()
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()
983 p->dic = (Byte *)alloc->Alloc(alloc, dicBufSize); in LzmaDec_Allocate()
995 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, in LzmaDecode()
996 const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode, in LzmaDecode()