HomeSort by: relevance | last modified time | path
    Searched defs:dms (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 485 const ZSTD_matchState_t* const dms = ms->dictMatchState; local
486 const ZSTD_compressionParameters* const dictCParams = &dms->cParams ;
487 const U32* const dictHashTable = dms->hashTable;
488 const U32 dictStartIndex = dms->window.dictLimit;
489 const BYTE* const dictBase = dms->window.base;
491 const BYTE* const dictEnd = dms->window.nextSrc;
zstd_double_fast.c 338 const ZSTD_matchState_t* const dms = ms->dictMatchState; local
339 const ZSTD_compressionParameters* const dictCParams = &dms->cParams;
340 const U32* const dictHashLong = dms->hashTable;
341 const U32* const dictHashSmall = dms->chainTable;
342 const U32 dictStartIndex = dms->window.dictLimit;
343 const BYTE* const dictBase = dms->window.base;
345 const BYTE* const dictEnd = dms->window.nextSrc;
zstd_opt.c 628 const ZSTD_matchState_t* dms = dictMode == ZSTD_dictMatchState ? ms->dictMatchState : NULL; local
630 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL;
631 const BYTE* const dmsBase = dictMode == ZSTD_dictMatchState ? dms->window.base : NULL;
632 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL;
634 U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0;
755 if (dictMode == ZSTD_dictMatchState) nbCompares = 0; /* break should also skip searching dms */
779 U32 dictMatchIndex = dms->hashTable[dmsH];
780 const U32* const dmsBt = dms->chainTable;
792 DEBUGLOG(8, "found dms match of length %u at distance %u (offBase=%u)",
zstd_lazy.c 173 const ZSTD_matchState_t * const dms = ms->dictMatchState; local
174 const ZSTD_compressionParameters* const dmsCParams = &dms->cParams;
175 const U32 * const dictHashTable = dms->hashTable;
183 const BYTE* const dictBase = dms->window.base;
184 const BYTE* const dictEnd = dms->window.nextSrc;
185 U32 const dictHighLimit = (U32)(dms->window.nextSrc - dms->window.base);
186 U32 const dictLowLimit = dms->window.lowLimit;
189 U32* const dictBt = dms->chainTable;
530 const ZSTD_matchState_t* const dms,
692 const ZSTD_matchState_t* const dms = ms->dictMatchState; local
1174 const ZSTD_matchState_t* const dms = ms->dictMatchState; local
1540 const ZSTD_matchState_t* const dms = ms->dictMatchState; local
    [all...]

Completed in 33 milliseconds