Home
last modified time | relevance | path

Searched refs:FSE_FUNCTION_TYPE (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/lib/zstd/common/
Dfse_decompress.c49 #ifndef FSE_FUNCTION_TYPE
95 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_internal()
157 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_internal()
167 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); in FSE_buildDTable_internal()
Dfse.h683 #define FSE_FUNCTION_TYPE BYTE macro
/linux-6.1.9/lib/zstd/compress/
Dfse_compress.c50 #ifndef FSE_FUNCTION_TYPE
80 FSE_FUNCTION_TYPE* tableSymbol = (FSE_FUNCTION_TYPE*)(cumul + (maxSymbolValue + 2)); in FSE_buildCTable_wksp()
104 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); in FSE_buildCTable_wksp()
118 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol; in FSE_buildCTable_wksp()
129FSE_FUNCTION_TYPE s = tableSymbol[u]; /* note : static analyzer may not understand tableSymbol i… in FSE_buildCTable_wksp()
Dzstd_compress_superblock.c190 assert(cTableWkspSize >= (1 << MaxFSELog) * sizeof(FSE_FUNCTION_TYPE)); in ZSTD_buildSuperBlockEntropy_sequences()