Lines Matching refs:Byte
123 static const Byte kLiteralNextStates[kNumStates * 2] =
148 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal()
158 Byte *dic = p->dic; in LzmaDec_DecodeReal()
166 const Byte *buf = p->buf; in LzmaDec_DecodeReal()
208 dic[dicPos++] = (Byte)symbol; in LzmaDec_DecodeReal()
409 Byte *dest = dic + dicPos; in LzmaDec_DecodeReal()
411 const Byte *lim = dest + curLen; in LzmaDec_DecodeReal()
414 *(dest) = (Byte)*(dest + src); in LzmaDec_DecodeReal()
451 Byte *dic = p->dic; in LzmaDec_WriteRem()
473 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2()
506 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *buf, SizeT inSize) in LzmaDec_TryDummy()
510 const Byte *bufLimit = buf + inSize; in LzmaDec_TryDummy()
697 static void LzmaDec_InitRc(CLzmaDec *p, const Byte *data) in LzmaDec_InitRc()
738 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, in LzmaDec_DecodeToDic()
794 const Byte *bufLimit; in LzmaDec_DecodeToDic()
861 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, E… in LzmaDec_DecodeToBuf()
921 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size) in LzmaProps_Decode()
924 Byte d; in LzmaProps_Decode()
961 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) in LzmaDec_AllocateProbs()
970 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) in LzmaDec_Allocate()
980 p->dic = (Byte *)alloc->Alloc(alloc, dicBufSize); in LzmaDec_Allocate()
992 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, in LzmaDecode()
993 const Byte *propData, unsigned propSize, ELzmaFinishMode finishMode, in LzmaDecode()