Lines Matching refs:Byte

44   Byte props;
51 Byte propsEncoded[LZMA_PROPS_SIZE]; in Lzma2EncInt_Init()
64 SRes LzmaEnc_MemPrepare(CLzmaEncHandle pp, const Byte *src, SizeT srcLen,
67 Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize);
68 const Byte *LzmaEnc_GetCurBuf(CLzmaEncHandle pp);
74 static SRes Lzma2EncInt_EncodeSubblock(CLzma2EncInt *p, Byte *outBuf, in Lzma2EncInt_EncodeSubblock()
117 …outBuf[destPos++] = (Byte)(p->srcPos == 0 ? LZMA2_CONTROL_COPY_RESET_DIC : LZMA2_CONTROL_COPY_NO_R… in Lzma2EncInt_EncodeSubblock()
118 outBuf[destPos++] = (Byte)((u - 1) >> 8); in Lzma2EncInt_EncodeSubblock()
119 outBuf[destPos++] = (Byte)(u - 1); in Lzma2EncInt_EncodeSubblock()
146 outBuf[destPos++] = (Byte)(LZMA2_CONTROL_LZMA | (mode << 5) | ((u >> 16) & 0x1F)); in Lzma2EncInt_EncodeSubblock()
147 outBuf[destPos++] = (Byte)(u >> 8); in Lzma2EncInt_EncodeSubblock()
148 outBuf[destPos++] = (Byte)u; in Lzma2EncInt_EncodeSubblock()
149 outBuf[destPos++] = (Byte)(pm >> 8); in Lzma2EncInt_EncodeSubblock()
150 outBuf[destPos++] = (Byte)pm; in Lzma2EncInt_EncodeSubblock()
261 Byte propEncoded;
264 Byte *outBuf;
288 mainEncoder->outBuf = (Byte *)IAlloc_Alloc(mainEncoder->alloc, LZMA2_CHUNK_SIZE_COMPRESSED_MAX); in Lzma2Enc_EncodeMt1()
311 Byte b = 0; in Lzma2Enc_EncodeMt1()
326 static SRes MtCallbackImp_Code(void *pp, unsigned index, Byte *dest, size_t *destSize, in MtCallbackImp_Code()
327 const Byte *src, size_t srcSize, int finished) in MtCallbackImp_Code()
439 Byte Lzma2Enc_WriteProperties(CLzma2EncHandle pp) in Lzma2Enc_WriteProperties()
447 return (Byte)i; in Lzma2Enc_WriteProperties()