Searched refs:targetLog (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dhuf_decompress.c935 static void HUF_fillDTableX2Level2(HUF_DEltX2* DTable, U32 targetLog, const U32 consumedBits, argument
945 U32 const length = 1U << ((targetLog - consumedBits) & 0x1F /* quiet static-analyzer */);
984 totalBits, targetLog,
990 static void HUF_fillDTableX2(HUF_DEltX2* DTable, const U32 targetLog, argument
996 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1007 if (targetLog-nbBits >= minBits) {
1010 U32 const length = 1U << ((targetLog - nbBits) & 0x1F /* quiet static-analyzer */);
1019 DTable + start, targetLog, nbBits,
1030 nbBits, targetLog,
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dhuf_decompress.c509 static void HUF_fillDTableX2(HUF_DEltX2* DTable, const U32 targetLog, argument
515 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
527 const U32 length = 1 << (targetLog-nbBits);
529 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */
534 HUF_fillDTableX2Level2(DTable+start, targetLog-nbBits, nbBits,
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v03.c1876 static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, argument
1882 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1895 const U32 length = 1 << (targetLog-nbBits);
1897 if (targetLog-nbBits >= minBits) /* enough room for a second symbol */
1903 HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
H A Dzstd_v06.c2285 static void HUFv06_fillDTableX4(HUFv06_DEltX4* DTable, const U32 targetLog, argument
2291 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2303 const U32 length = 1 << (targetLog-nbBits);
2305 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */
2310 HUFv06_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
H A Dzstd_v05.c2153 static void HUFv05_fillDTableX4(HUFv05_DEltX4* DTable, const U32 targetLog, argument
2159 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2171 const U32 length = 1 << (targetLog-nbBits);
2173 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */
2178 HUFv05_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
H A Dzstd_v04.c2027 static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, argument
2033 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2046 const U32 length = 1 << (targetLog-nbBits);
2048 if (targetLog-nbBits >= minBits) /* enough room for a second symbol */
2054 HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
H A Dzstd_v07.c2092 static void HUFv07_fillDTableX4(HUFv07_DEltX4* DTable, const U32 targetLog, argument
2098 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2110 const U32 length = 1 << (targetLog-nbBits);
2112 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */
2117 HUFv07_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
H A Dzstd_v02.c1879 static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, argument
1885 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1898 const U32 length = 1 << (targetLog-nbBits);
1900 if (targetLog-nbBits >= minBits) /* enough room for a second symbol */
1906 HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits,
2203 const int scaleLog = nbBitsBaseline - sizeLog; /* note : targetLog >= (nbBitsBaseline-1), hence scaleLog <= 1 */

Completed in 245 milliseconds