Searched refs:maxCount (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c656 { CHECK_V_F(maxCount, HIST_count_wksp(count, &maxSymbolValue, src, srcSize, scratchBuffer, scratchBufferSize) );
657 if (maxCount == srcSize) return 1; /* only a single symbol in src : rle */
658 if (maxCount == 1) return 0; /* each symbol present maximum once => not compressible */
659 if (maxCount < (srcSize >> 7)) return 0; /* Heuristic : not compressible enough */
H A Dhuf_compress.c81 { unsigned const maxCount = HIST_count_simple(count, &maxSymbolValue, weightTable, wtSize); /* never fails */ local
82 if (maxCount == wtSize) return 1; /* only a single symbol in src : rle */
83 if (maxCount == 1) return 0; /* each symbol present maximum once => not compressible */
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c8131 { CHECK_V_F(maxCount, HIST_count_wksp(count, &maxSymbolValue, src, srcSize, scratchBuffer, scratchBufferSize) );
8132 if (maxCount == srcSize) return 1; /* only a single symbol in src : rle */
8133 if (maxCount == 1) return 0; /* each symbol present maximum once => not compressible */
8134 if (maxCount < (srcSize >> 7)) return 0; /* Heuristic : not compressible enough */
8446 { unsigned const maxCount = HIST_count_simple(count, &maxSymbolValue, weightTable, wtSize); /* never fails */ local
8447 if (maxCount == wtSize) return 1; /* only a single symbol in src : rle */
8448 if (maxCount == 1) return 0; /* each symbol present maximum once => not compressible */
[all...]
/freebsd-13-stable/contrib/sqlite3/
H A Dsqlite3.c25468 u32 maxCount; /* Maximum instantaneous currentCount */ member in struct:Mem5Global
[all...]

Completed in 461 milliseconds