Lines Matching refs:Byte
61 static SRes Lzma2Dec_GetOldProps(Byte prop, Byte *props) in Lzma2Dec_GetOldProps()
67 props[0] = (Byte)LZMA2_LCLP_MAX; in Lzma2Dec_GetOldProps()
68 props[1] = (Byte)(dicSize); in Lzma2Dec_GetOldProps()
69 props[2] = (Byte)(dicSize >> 8); in Lzma2Dec_GetOldProps()
70 props[3] = (Byte)(dicSize >> 16); in Lzma2Dec_GetOldProps()
71 props[4] = (Byte)(dicSize >> 24); in Lzma2Dec_GetOldProps()
75 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc) in Lzma2Dec_AllocateProbs()
77 Byte props[LZMA_PROPS_SIZE]; in Lzma2Dec_AllocateProbs()
82 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc) in Lzma2Dec_Allocate()
84 Byte props[LZMA_PROPS_SIZE]; in Lzma2Dec_Allocate()
98 static ELzma2State Lzma2Dec_UpdateState(CLzma2Dec *p, Byte b) in Lzma2Dec_UpdateState()
159 static void LzmaDec_UpdateWithUncompressed(CLzmaDec *p, const Byte *src, SizeT size) in LzmaDec_UpdateWithUncompressed()
171 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) in Lzma2Dec_DecodeToDic()
291 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,… in Lzma2Dec_DecodeToBuf()
330 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, in Lzma2Decode()
331 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc) in Lzma2Decode()
336 Byte props[LZMA_PROPS_SIZE]; in Lzma2Decode()