• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/zstd/lib/compress/

Lines Matching refs:base

24     const BYTE* const base = ms->window.base;
25 const BYTE* ip = base + ms->nextToUpdate;
34 U32 const curr = (U32)(ip - base);
61 const BYTE* const base = ms->window.base;
65 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
68 const BYTE* const prefixLowest = base + prefixLowestIndex;
85 dms->window.base : NULL;
111 U32 const curr = (U32)(ip - base);
132 U32 const curr = (U32)(ip-base);
135 const BYTE* matchLong = base + matchIndexL;
136 const BYTE* match = base + matchIndexS;
141 base + repIndex;
211 const BYTE* matchL3 = base + matchIndexL3;
264 hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert;
265 hashLong[ZSTD_hashPtr(ip-2, hBitsL, 8)] = (U32)(ip-2-base);
266 hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert;
267 hashSmall[ZSTD_hashPtr(ip-1, hBitsS, mls)] = (U32)(ip-1-base);
273 U32 const current2 = (U32)(ip-base);
278 base + repIndex2;
301 hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = (U32)(ip-base);
302 hashLong[ZSTD_hashPtr(ip, hBitsL, 8)] = (U32)(ip-base);
374 const BYTE* const base = ms->window.base;
375 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize);
380 const BYTE* const prefixStart = base + prefixStartIndex;
396 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base;
401 const BYTE* const matchLongBase = matchLongIndex < prefixStartIndex ? dictBase : base;
404 const U32 curr = (U32)(ip-base);
406 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base;
433 const BYTE* const match3Base = matchIndex3 < prefixStartIndex ? dictBase : base;
468 hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert;
469 hashLong[ZSTD_hashPtr(ip-2, hBitsL, 8)] = (U32)(ip-2-base);
470 hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert;
471 hashSmall[ZSTD_hashPtr(ip-1, hBitsS, mls)] = (U32)(ip-1-base);
476 U32 const current2 = (U32)(ip-base);
478 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;