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

  /src/external/bsd/zstd/dist/lib/common/
fse.h 116 /*! Constructor and Destructor of FSE_CTable.
117 Note that FSE_CTable size depends on 'tableLog' and 'maxSymbolValue' */
118 typedef unsigned FSE_CTable; /* don't allocate that. It's only meant to be more restrictive than void* */
123 FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
130 FSE_PUBLIC_API size_t FSE_compress_usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct);
239 /* It is possible to statically allocate FSE CTable/DTable as a table of FSE_CTable/FSE_DTable using below macros */
244 #define FSE_CTABLE_SIZE(maxTableLog, maxSymbolValue) (FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) * sizeof(FSE_CTable))
255 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue);
256 /**< build a fake FSE_CTable, designed to compress always the same symbolValue */
265 size_t FSE_buildCTable_wksp(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, (…)
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 58 typedef unsigned FSE_CTable; /* don't allocate that. It's just a way to be more restrictive than void* */
zstd_v03.c 541 Constructor and Destructor of type FSE_CTable
543 typedef unsigned FSE_CTable; /* don't allocate that. It's just a way to be more restrictive than void* */
zstd_v02.c 540 Constructor and Destructor of type FSE_CTable
542 typedef unsigned FSE_CTable; /* don't allocate that. It's just a way to be more restrictive than void* */

Completed in 45 milliseconds