Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zstd/lib/common/
H A 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()
H A Dfse.h686 #define FSE_FUNCTION_TYPE BYTE macro
/f-stack/freebsd/contrib/zstd/lib/compress/
H A 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()
177FSE_FUNCTION_TYPE tableSymbol[FSE_MAX_TABLESIZE]; /* memset() is not necessary, even if static a… in FSE_buildCTable()
H A Dzstd_compress_superblock.c189 assert(cTableWkspSize >= (1 << MaxFSELog) * sizeof(FSE_FUNCTION_TYPE)); in ZSTD_buildSuperBlockEntropy_sequences()
/f-stack/freebsd/contrib/zstd/lib/legacy/
H A Dzstd_v01.c118 #define FSE_FUNCTION_TYPE BYTE macro
378 #ifndef FSE_FUNCTION_TYPE
425 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
441 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
454 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol); in FSE_buildDTable()
H A Dzstd_v03.c1006 #define FSE_FUNCTION_TYPE BYTE macro
1084 #ifndef FSE_FUNCTION_TYPE
1126 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
1142 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
1155 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol); in FSE_buildDTable()
H A Dzstd_v04.c989 #define FSE_FUNCTION_TYPE BYTE macro
1065 #ifndef FSE_FUNCTION_TYPE
1103 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
1119 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
1132 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol); in FSE_buildDTable()
H A Dzstd_v02.c1005 #define FSE_FUNCTION_TYPE BYTE macro
1083 #ifndef FSE_FUNCTION_TYPE
1125 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
1141 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
1154 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol); in FSE_buildDTable()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c2126 #define FSE_FUNCTION_TYPE BYTE macro
2800 #ifndef FSE_FUNCTION_TYPE
2844 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
2860 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable()
2870 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); in FSE_buildDTable()
7528 #ifndef FSE_FUNCTION_TYPE
7558 FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)workSpace; in FSE_buildCTable_wksp()
7562 …if (((size_t)1 << tableLog) * sizeof(FSE_FUNCTION_TYPE) > wkspSize) return ERROR(tableLog_tooLarge… in FSE_buildCTable_wksp()
7580 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); in FSE_buildCTable_wksp()
7594 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol; in FSE_buildCTable_wksp()
[all …]