Lines Matching refs:Byte
106 void LzmaEnc_FastPosInit(Byte *g_FastPos) in LzmaEnc_FastPosInit()
117 g_FastPos[c] = (Byte)slotFast; in LzmaEnc_FastPosInit()
223 Byte cache;
226 Byte *buf;
227 Byte *bufLim;
228 Byte *bufBase;
237 const Byte *data;
289 Byte pad[128];
301 Byte g_FastPos[1 << kNumLogBits];
489 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE); in RangeEnc_Alloc()
533 Byte temp = p->cache; in RangeEnc_ShiftLow()
536 Byte *buf = p->buf; in RangeEnc_ShiftLow()
537 *buf++ = (Byte)(temp + (Byte)(p->low >> 32)); in RangeEnc_ShiftLow()
544 p->cache = (Byte)((UInt32)p->low >> 24); in RangeEnc_ShiftLow()
855 const Byte *pby = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1; in ReadMatchDistances()
861 const Byte *pby2 = pby - distance; in ReadMatchDistances()
955 const Byte *data; in GetOptimum()
956 Byte curByte, matchByte; in GetOptimum()
989 const Byte *data2; in GetOptimum()
1149 Byte curByte, matchByte; in GetOptimum()
1150 const Byte *data; in GetOptimum()
1292 const Byte *data2 = data - (reps[0] + 1); in GetOptimum()
1335 const Byte *data2 = data - (reps[repIndex] + 1); in GetOptimum()
1452 const Byte *data2 = data - (curBack + 1); in GetOptimum()
1512 const Byte *data; in GetOptimumFast()
1535 const Byte *data2 = data - (p->reps[i] + 1); in GetOptimumFast()
1604 const Byte *data2 = data - (p->reps[i] + 1); in GetOptimumFast()
1773 Byte curByte; in LzmaEnc_CodeOneBlock()
1802 Byte curByte; in LzmaEnc_CodeOneBlock()
1804 const Byte *data; in LzmaEnc_CodeOneBlock()
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()
2106 Byte *data;
2132 const Byte *LzmaEnc_GetCurBuf(CLzmaEncHandle pp) in LzmaEnc_GetCurBuf()
2139 Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize) in LzmaEnc_CodeOneMemBlock()
2179 Byte allocaDummy[0x300]; in LzmaEnc_Encode()
2182 allocaDummy[i] = (Byte)i; in LzmaEnc_Encode()
2206 SRes LzmaEnc_WriteProperties(CLzmaEncHandle pp, Byte *props, SizeT *size) in LzmaEnc_WriteProperties()
2214 props[0] = (Byte)((p->pb * 5 + p->lp) * 9 + p->lc); in LzmaEnc_WriteProperties()
2231 props[1 + i] = (Byte)(dictSize >> (8 * i)); 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()