HomeSort by: relevance | last modified time | path
    Searched refs:scaleLog (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 169 U32 const scaleLog = 11; /* scale to 2K */
171 assert(bitCost <= scaleLog);
172 optPtr->litFreq[lit] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
181 U32 const scaleLog = 10; /* scale to 1K */
183 assert(bitCost < scaleLog);
184 optPtr->litLengthFreq[ll] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
193 U32 const scaleLog = 10;
195 assert(bitCost < scaleLog);
196 optPtr->matchLengthFreq[ml] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/;
205 U32 const scaleLog = 10
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v02.c 1824 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1842 int minWeight = nbBits + scaleLog;
2142 const int scaleLog = nbBitsBaseline - sizeLog; /* note : targetLog >= (nbBitsBaseline-1), hence scaleLog <= 1 */
2179 int nextMinWeight = totalBits + scaleLog;
zstd_v03.c 1820 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1838 int minWeight = nbBits + scaleLog;
zstd_v04.c 1977 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1995 int minWeight = nbBits + scaleLog;
zstd_v05.c 2107 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2123 int minWeight = nbBits + scaleLog;
zstd_v06.c 2235 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2251 int minWeight = nbBits + scaleLog;
zstd_v07.c 2043 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
2059 int minWeight = nbBits + scaleLog;
  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 1130 const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */
1145 int minWeight = nbBits + scaleLog;

Completed in 170 milliseconds