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

  /src/external/bsd/zstd/dist/lib/common/
huf.h 136 size_t HUF_estimateCompressedSize(const HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue);
  /src/external/bsd/zstd/dist/lib/compress/
huf_compress.c 793 size_t HUF_estimateCompressedSize(const HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue)
1313 newSize = HUF_estimateCompressedSize(table, count, maxSymbolValue) + hSize;
1416 size_t const oldSize = HUF_estimateCompressedSize(oldHufTable, table->count, maxSymbolValue);
1417 size_t const newSize = HUF_estimateCompressedSize(table->CTable, table->count, maxSymbolValue);
zstd_compress_superblock.c 322 { size_t cLitSizeEstimate = HUF_estimateCompressedSize((const HUF_CElt*)huf->CTable, countWksp, maxSymbolValue);
zstd_compress.c 3709 size_t const newCSize = HUF_estimateCompressedSize(
3717 size_t const oldCSize = HUF_estimateCompressedSize(
3846 { size_t cLitSizeEstimate = HUF_estimateCompressedSize((const HUF_CElt*)huf->CTable, countWksp, maxSymbolValue);

Completed in 81 milliseconds