Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/lib/zstd/
H A Dfse_decompress.c302 spaceUsed32 += FSE_DTABLE_SIZE_U32(maxLog); in FSE_decompress_wksp()
H A Dfse.h240 #define FSE_DTABLE_SIZE_U32(maxTableLog) (1 + (1 << maxTableLog)) macro
H A Ddecompress.c69 FSE_DTable LLTable[FSE_DTABLE_SIZE_U32(LLFSELog)];
70 FSE_DTable OFTable[FSE_DTABLE_SIZE_U32(OffFSELog)];
71 FSE_DTable MLTable[FSE_DTABLE_SIZE_U32(MLFSELog)];
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0005-calloc-Use-calloc-at-most-places.patch981 - return (FSE_DTable*)malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) );
982 + return (FSE_DTable*)calloc( FSE_DTABLE_SIZE_U32(tableLog), sizeof (U32) );