Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/ !
Dfse_decompress.c84 #ifndef FSE_FUNCTION_TYPE
123 tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_wksp()
143 tableDecode[position].symbol = (FSE_FUNCTION_TYPE)s; in FSE_buildDTable_wksp()
157 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); in FSE_buildDTable_wksp()
Dfse_compress.c76 #ifndef FSE_FUNCTION_TYPE
104 FSE_FUNCTION_TYPE *tableSymbol; in FSE_buildCTable_wksp()
109 tableSymbol = (FSE_FUNCTION_TYPE *)((U32 *)workspace + spaceUsed32); in FSE_buildCTable_wksp()
110 spaceUsed32 += ALIGN(sizeof(FSE_FUNCTION_TYPE) * ((size_t)1 << tableLog), sizeof(U32)) >> 2; in FSE_buildCTable_wksp()
131 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u - 1); in FSE_buildCTable_wksp()
146 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol; in FSE_buildCTable_wksp()
161FSE_FUNCTION_TYPE s = tableSymbol[u]; /* note : static analyzer may not understand tableSymbol is … in FSE_buildCTable_wksp()
Dfse.h555 #define FSE_FUNCTION_TYPE BYTE macro