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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 331 U32 const mlBase = matchLength - MINMATCH;
335 return WEIGHT(mlBase, optLevel)
344 { U32 const mlCode = ZSTD_MLcode(mlBase);
382 { U32 const mlBase = matchLength - MINMATCH;
383 U32 const mlCode = ZSTD_MLcode(mlBase);
zstd_compress_internal.h 88 U16 mlBase; /* mlBase == matchLength - MINMATCH */
130 seqLen.matchLength = seq->mlBase + MINMATCH;
599 * note : mlBase = matchLength - MINMATCH;
601 MEM_STATIC U32 ZSTD_MLcode(U32 mlBase)
612 return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase];
757 { size_t const mlBase = matchLength - MINMATCH;
758 if (UNLIKELY(mlBase>0xFFFF))
    [all...]

Completed in 32 milliseconds