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

  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 284 U16 mlBase; /* mlBase == matchLength - MINMATCH */
326 seqLen.matchLength = seq->mlBase + MINMATCH;
  /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 532 * note : mlBase = matchLength - MINMATCH;
534 MEM_STATIC U32 ZSTD_MLcode(U32 mlBase)
545 return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase];
696 { size_t const mlBase = matchLength - MINMATCH;
697 if (mlBase>0xFFFF) {
702 seqStorePtr->sequences[0].mlBase = (U16)mlBase;

Completed in 33 milliseconds