Searched refs:targetLog (Results 1 – 1 of 1) sorted by relevance
/linux-6.6.21/lib/zstd/decompress/ |
D | huf_decompress.c | 931 static void HUF_fillDTableX2Level2(HUF_DEltX2* DTable, U32 targetLog, const U32 consumedBits, in HUF_fillDTableX2Level2() argument 941 U32 const length = 1U << ((targetLog - consumedBits) & 0x1F /* quiet static-analyzer */); in HUF_fillDTableX2Level2() 980 totalBits, targetLog, in HUF_fillDTableX2Level2() 986 static void HUF_fillDTableX2(HUF_DEltX2* DTable, const U32 targetLog, in HUF_fillDTableX2() argument 992 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUF_fillDTableX2() 1003 if (targetLog-nbBits >= minBits) { in HUF_fillDTableX2() 1006 U32 const length = 1U << ((targetLog - nbBits) & 0x1F /* quiet static-analyzer */); in HUF_fillDTableX2() 1015 DTable + start, targetLog, nbBits, in HUF_fillDTableX2() 1026 nbBits, targetLog, in HUF_fillDTableX2()
|