Symbol: FSE_PUBLIC_API
lib/zstd/common/fse.h
101
FSE_PUBLIC_API size_t FSE_normalizeCount(short* normalizedCounter, unsigned tableLog,
lib/zstd/common/fse.h
107
FSE_PUBLIC_API size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog);
lib/zstd/common/fse.h
113
FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
lib/zstd/common/fse.h
124
FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
lib/zstd/common/fse.h
131
FSE_PUBLIC_API size_t FSE_compress_usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct);
lib/zstd/common/fse.h
184
FSE_PUBLIC_API size_t FSE_readNCount (short* normalizedCounter,
lib/zstd/common/fse.h
191
FSE_PUBLIC_API size_t FSE_readNCount_bmi2(short* normalizedCounter,
lib/zstd/common/fse.h
270
FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize);
lib/zstd/common/fse.h
48
FSE_PUBLIC_API unsigned FSE_versionNumber(void); /*< library version number; to be used when checking dll version */
lib/zstd/common/fse.h
54
FSE_PUBLIC_API size_t FSE_compressBound(size_t size); /* maximum compressed size */
lib/zstd/common/fse.h
57
FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */
lib/zstd/common/fse.h
58
FSE_PUBLIC_API const char* FSE_getErrorName(size_t code); /* provides error code string (useful for debugging) */
lib/zstd/common/fse.h
88
FSE_PUBLIC_API unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue);