Lines Matching refs:Byte
63 static SRes Lzma2Dec_GetOldProps(Byte prop, Byte *props) in Lzma2Dec_GetOldProps()
69 props[0] = (Byte)LZMA2_LCLP_MAX; in Lzma2Dec_GetOldProps()
70 props[1] = (Byte)(dicSize); in Lzma2Dec_GetOldProps()
71 props[2] = (Byte)(dicSize >> 8); in Lzma2Dec_GetOldProps()
72 props[3] = (Byte)(dicSize >> 16); in Lzma2Dec_GetOldProps()
73 props[4] = (Byte)(dicSize >> 24); in Lzma2Dec_GetOldProps()
77 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc) in Lzma2Dec_AllocateProbs()
79 Byte props[LZMA_PROPS_SIZE]; in Lzma2Dec_AllocateProbs()
84 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc) in Lzma2Dec_Allocate()
86 Byte props[LZMA_PROPS_SIZE]; in Lzma2Dec_Allocate()
100 static ELzma2State Lzma2Dec_UpdateState(CLzma2Dec *p, Byte b) in Lzma2Dec_UpdateState()
161 static void LzmaDec_UpdateWithUncompressed(CLzmaDec *p, const Byte *src, SizeT size) in LzmaDec_UpdateWithUncompressed()
173 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) in Lzma2Dec_DecodeToDic()
293 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,… in Lzma2Dec_DecodeToBuf()
332 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, in Lzma2Decode()
333 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) in Lzma2Decode()