Searched refs:FSE_writeNCount (Results 1 - 8 of 8) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress_sequences.c | 77 return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog); in ZSTD_NCountCost() 280 { size_t const NCountSize = FSE_writeNCount(op, (size_t)(oend - op), wksp->norm, max, tableLog); /* overflow protected */ in ZSTD_buildCTable() 281 FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed"); in ZSTD_buildCTable()
|
H A D | fse_compress.c | 328 size_t FSE_writeNCount (void* buffer, size_t bufferSize, in FSE_writeNCount() function
|
H A D | huf_compress.c | 114 { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), wksp->norm, maxSymbolValue, tableLog) ); in HUF_compressWeights()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | fse.h | 114 /*! FSE_writeNCount(): 118 FSE_PUBLIC_API size_t FSE_writeNCount(void *buffer, size_t bufferSize, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog); 156 'normalizedCounter' can be saved in a compact manner to a memory area using FSE_writeNCount(). 207 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount().
|
H A D | fse_compress.c | 301 size_t FSE_writeNCount(void *buffer, size_t bufferSize, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) in FSE_writeNCount() function
|
H A D | huf_compress.c | 128 CHECK_V_F(hSize, FSE_writeNCount(op, oend - op, norm, maxSymbolValue, tableLog)); in HUF_compressWeights_wksp()
|
H A D | compress.c | 672 size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ in ZSTD_compressSequences_internal() 704 size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ in ZSTD_compressSequences_internal() 736 size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ in ZSTD_compressSequences_internal()
|
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A D | fse.h | 153 /*! FSE_writeNCount(): 157 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize, 204 'normalizedCounter' can be saved in a compact manner to a memory area using FSE_writeNCount(). 267 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount().
|
Completed in 16 milliseconds