Home
last modified time | relevance | path

Searched refs:SizeT (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.h53 SizeT dicPos;
54 SizeT dicBufSize;
177 SRes LzmaDec_DecodeToDic(CLzmaDec *p, SizeT dicLimit,
178 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
194 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
195 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
219 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
H A DLzmaEnc.h56 SRes LzmaEnc_WriteProperties(CLzmaEncHandle p, Byte *properties, SizeT *size);
59 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
73 extern SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
74 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
H A DLzmaDec.c148 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal()
159 SizeT dicBufSize = p->dicBufSize; in LzmaDec_DecodeReal()
160 SizeT dicPos = p->dicPos; in LzmaDec_DecodeReal()
400 SizeT rem = limit - dicPos; in LzmaDec_DecodeReal()
402 SizeT pos = (dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0); in LzmaDec_DecodeReal()
447 static void MY_FAST_CALL LzmaDec_WriteRem(CLzmaDec *p, SizeT limit) in LzmaDec_WriteRem()
452 SizeT dicPos = p->dicPos; in LzmaDec_WriteRem()
453 SizeT dicBufSize = p->dicBufSize; in LzmaDec_WriteRem()
473 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit) in LzmaDec_DecodeReal2()
477 SizeT limit2 = limit; in LzmaDec_DecodeReal2()
[all …]
H A DTypes.h83 typedef UInt32 SizeT; typedef
86 typedef size_t SizeT; typedef
H A DLzmaEnc.c238 SizeT rem;
2076 static void LzmaEnc_SetInputBuf(CLzmaEnc *p, const Byte *src, SizeT srcLen) in LzmaEnc_SetInputBuf()
2083 SRes LzmaEnc_MemPrepare(CLzmaEncHandle pp, const Byte *src, SizeT srcLen, in LzmaEnc_MemPrepare()
2107 SizeT rem;
2206 SRes LzmaEnc_WriteProperties(CLzmaEncHandle pp, Byte *props, SizeT *size) in LzmaEnc_WriteProperties()
2235 SRes LzmaEnc_MemEncode(CLzmaEncHandle pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, in LzmaEnc_MemEncode()
2260 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, in LzmaEncode()
2261 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, in LzmaEncode()