Lines Matching refs:BYTE

24     const BYTE* const base = ms->window.base;
25 const BYTE* ip = base + ms->nextToUpdate;
26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
60 const BYTE* const base = ms->window.base;
61 const BYTE* const istart = (const BYTE*)src;
62 const BYTE* anchor = istart;
66 const BYTE* const prefixLowest = base + prefixLowestIndex;
67 const BYTE* const iend = istart + srcSize;
68 const BYTE* const ilimit = iend - HASH_READ_SIZE;
79 const BYTE* nextStep;
88 const BYTE* matchl0; /* the long match for ip */
89 const BYTE* matchs0; /* the short match for ip */
90 const BYTE* matchl1; /* the long match for ip1 */
92 const BYTE* ip = istart; /* the current position */
93 const BYTE* ip1; /* the next position */
267 const BYTE* const base = ms->window.base;
268 const BYTE* const istart = (const BYTE*)src;
269 const BYTE* ip = istart;
270 const BYTE* anchor = istart;
274 const BYTE* const prefixLowest = base + prefixLowestIndex;
275 const BYTE* const iend = istart + srcSize;
276 const BYTE* const ilimit = iend - HASH_READ_SIZE;
285 const BYTE* const dictBase = dms->window.base;
286 const BYTE* const dictStart = dictBase + dictStartIndex;
287 const BYTE* const dictEnd = dms->window.nextSrc;
317 const BYTE* matchLong = base + matchIndexL;
318 const BYTE* match = base + matchIndexS;
320 const BYTE* repMatch = (repIndex < prefixLowestIndex) ?
328 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend;
346 const BYTE* dictMatchL = dictBase + dictMatchIndexL;
382 const BYTE* matchL3 = base + matchIndexL3;
397 const BYTE* dictMatchL3 = dictBase + dictMatchIndexL3;
443 const BYTE* repMatch2 = repIndex2 < prefixLowestIndex ?
448 const BYTE* const repEnd2 = repIndex2 < prefixLowestIndex ? dictEnd : iend;
540 const BYTE* const istart = (const BYTE*)src;
541 const BYTE* ip = istart;
542 const BYTE* anchor = istart;
543 const BYTE* const iend = istart + srcSize;
544 const BYTE* const ilimit = iend - 8;
545 const BYTE* const base = ms->window.base;
551 const BYTE* const prefixStart = base + prefixStartIndex;
552 const BYTE* const dictBase = ms->window.dictBase;
553 const BYTE* const dictStart = dictBase + dictStartIndex;
554 const BYTE* const dictEnd = dictBase + prefixStartIndex;
567 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base;
568 const BYTE* match = matchBase + matchIndex;
572 const BYTE* const matchLongBase = matchLongIndex < prefixStartIndex ? dictBase : base;
573 const BYTE* matchLong = matchLongBase + matchLongIndex;
577 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base;
578 const BYTE* const repMatch = repBase + repIndex;
585 const BYTE* repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
591 const BYTE* const matchEnd = matchLongIndex < prefixStartIndex ? dictEnd : iend;
592 const BYTE* const lowMatchPtr = matchLongIndex < prefixStartIndex ? dictStart : prefixStart;
604 const BYTE* const match3Base = matchIndex3 < prefixStartIndex ? dictBase : base;
605 const BYTE* match3 = match3Base + matchIndex3;
609 const BYTE* const matchEnd = matchIndex3 < prefixStartIndex ? dictEnd : iend;
610 const BYTE* const lowMatchPtr = matchIndex3 < prefixStartIndex ? dictStart : prefixStart;
616 const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend;
617 const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart;
649 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;
653 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;