Lines Matching refs:BYTE

66                                 BYTE const* data, size_t minMatchLength)
97 BYTE const* data, size_t size,
184 BYTE* const pOffset = ldmState->bucketOffsets + hash;
188 *pOffset = (BYTE)((offset + 1) & ((1u << ldmParams.bucketSizeLog) - 1));
197 const BYTE* pIn, const BYTE* pAnchor,
198 const BYTE* pMatch, const BYTE* pMatchBase)
215 const BYTE* pIn, const BYTE* pAnchor,
216 const BYTE* pMatch, const BYTE* pMatchBase,
217 const BYTE* pExtDictStart, const BYTE* pExtDictEnd)
240 const BYTE* const iend = (const BYTE*)end;
268 ldmState_t* ldmState, const BYTE* ip,
269 const BYTE* iend, ldmParams_t const* params)
273 BYTE const* const base = ldmState->window.base;
274 BYTE const* const istart = ip;
291 BYTE const* const split = ip + splits[n] - minMatchLength;
312 static void ZSTD_ldm_limitTableUpdate(ZSTD_matchState_t* ms, const BYTE* anchor)
333 BYTE const* const base = ldmState->window.base;
334 BYTE const* const dictBase = extDict ? ldmState->window.dictBase : NULL;
335 BYTE const* const dictStart = extDict ? dictBase + lowestIndex : NULL;
336 BYTE const* const dictEnd = extDict ? dictBase + dictLimit : NULL;
337 BYTE const* const lowPrefixPtr = base + dictLimit;
339 BYTE const* const istart = (BYTE const*)src;
340 BYTE const* const iend = istart + srcSize;
341 BYTE const* const ilimit = iend - HASH_READ_SIZE;
343 BYTE const* anchor = istart;
344 BYTE const* ip = istart;
369 BYTE const* const split = ip + splits[n] - minMatchLength;
384 BYTE const* const split = candidates[n].split;
410 BYTE const* const curMatchBase =
412 BYTE const* const pMatch = curMatchBase + cur->offset;
413 BYTE const* const matchEnd =
415 BYTE const* const lowMatchPtr =
425 BYTE const* const pMatch = base + cur->offset;
510 BYTE const* const istart = (BYTE const*)src;
511 BYTE const* const iend = istart + srcSize;
521 assert(ldmState->window.nextSrc >= (BYTE const*)src + srcSize);
528 BYTE const* const chunkStart = istart + chunk * kMaxChunkSize;
530 BYTE const *const chunkEnd =
670 BYTE const* const istart = (BYTE const*)src;
671 BYTE const* const iend = istart + srcSize;
673 BYTE const* ip = istart;