Home
last modified time | relevance | path

Searched refs:ML_Code (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/lib/zstd/
Dzstd_opt.h158 …de = (matchLength > 127) ? (BYTE)ZSTD_highbit32(matchLength) + ML_deltaCode : ML_Code[matchLength]; in ZSTD_getPrice()
192 …de = (matchLength > 127) ? (BYTE)ZSTD_highbit32(matchLength) + ML_deltaCode : ML_Code[matchLength]; in ZSTD_updatePrice()
Dcompress.c557 static const BYTE ML_Code[128] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1… variable
578 mlCodeTable[u] = (mlv > 127) ? (BYTE)ZSTD_highbit32(mlv) + ML_deltaCode : ML_Code[mlv]; in ZSTD_seqToCodes()