Searched refs:targetLog (Results 1 – 7 of 7) sorted by relevance
/external/zstd/lib/decompress/ |
D | huf_decompress.c | 935 static void HUF_fillDTableX2Level2(HUF_DEltX2* DTable, U32 targetLog, const U32 consumedBits, in HUF_fillDTableX2Level2() argument 945 U32 const length = 1U << ((targetLog - consumedBits) & 0x1F /* quiet static-analyzer */); in HUF_fillDTableX2Level2() 984 totalBits, targetLog, in HUF_fillDTableX2Level2() 990 static void HUF_fillDTableX2(HUF_DEltX2* DTable, const U32 targetLog, in HUF_fillDTableX2() argument 996 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUF_fillDTableX2() 1007 if (targetLog-nbBits >= minBits) { in HUF_fillDTableX2() 1010 U32 const length = 1U << ((targetLog - nbBits) & 0x1F /* quiet static-analyzer */); in HUF_fillDTableX2() 1019 DTable + start, targetLog, nbBits, in HUF_fillDTableX2() 1030 nbBits, targetLog, in HUF_fillDTableX2()
|
/external/zstd/lib/legacy/ |
D | zstd_v03.c | 1876 static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, in HUF_fillDTableX4() argument 1882 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUF_fillDTableX4() 1895 const U32 length = 1 << (targetLog-nbBits); in HUF_fillDTableX4() 1897 if (targetLog-nbBits >= minBits) /* enough room for a second symbol */ in HUF_fillDTableX4() 1903 HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, in HUF_fillDTableX4()
|
D | zstd_v04.c | 2027 static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, in HUF_fillDTableX4() argument 2033 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUF_fillDTableX4() 2046 const U32 length = 1 << (targetLog-nbBits); in HUF_fillDTableX4() 2048 if (targetLog-nbBits >= minBits) /* enough room for a second symbol */ in HUF_fillDTableX4() 2054 HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, in HUF_fillDTableX4()
|
D | zstd_v02.c | 1879 static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, in HUF_fillDTableX4() argument 1885 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUF_fillDTableX4() 1898 const U32 length = 1 << (targetLog-nbBits); in HUF_fillDTableX4() 1900 if (targetLog-nbBits >= minBits) /* enough room for a second symbol */ in HUF_fillDTableX4() 1906 HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, in HUF_fillDTableX4()
|
D | zstd_v05.c | 2153 static void HUFv05_fillDTableX4(HUFv05_DEltX4* DTable, const U32 targetLog, in HUFv05_fillDTableX4() argument 2159 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUFv05_fillDTableX4() 2171 const U32 length = 1 << (targetLog-nbBits); in HUFv05_fillDTableX4() 2173 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */ in HUFv05_fillDTableX4() 2178 HUFv05_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, in HUFv05_fillDTableX4()
|
D | zstd_v06.c | 2285 static void HUFv06_fillDTableX4(HUFv06_DEltX4* DTable, const U32 targetLog, in HUFv06_fillDTableX4() argument 2291 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUFv06_fillDTableX4() 2303 const U32 length = 1 << (targetLog-nbBits); in HUFv06_fillDTableX4() 2305 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */ in HUFv06_fillDTableX4() 2310 HUFv06_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, in HUFv06_fillDTableX4()
|
D | zstd_v07.c | 2092 static void HUFv07_fillDTableX4(HUFv07_DEltX4* DTable, const U32 targetLog, in HUFv07_fillDTableX4() argument 2098 …const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <… in HUFv07_fillDTableX4() 2110 const U32 length = 1 << (targetLog-nbBits); in HUFv07_fillDTableX4() 2112 if (targetLog-nbBits >= minBits) { /* enough room for a second symbol */ in HUFv07_fillDTableX4() 2117 HUFv07_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, in HUFv07_fillDTableX4()
|