Searched refs:FSE_DTable (Results 1 – 3 of 3) sorted by relevance
/lib/zstd/ |
D | fse_decompress.c | 88 size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue… in FSE_buildDTable_wksp() 163 size_t FSE_buildDTable_rle(FSE_DTable *dt, BYTE symbolValue) in FSE_buildDTable_rle() 180 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits) in FSE_buildDTable_raw() 207 …able_generic(void *dst, size_t maxDstSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt, in FSE_decompress_usingDTable_generic() 275 …singDTable(void *dst, size_t originalSize, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt) in FSE_decompress_usingDTable() 295 FSE_DTable *dt; in FSE_decompress_wksp() 299 FSE_STATIC_ASSERT(sizeof(FSE_DTable) == sizeof(U32)); in FSE_decompress_wksp() 301 dt = (FSE_DTable *)((U32 *)workspace + spaceUsed32); in FSE_decompress_wksp()
|
D | fse.h | 185 typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than vo… typedef 190 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned… 197 …singDTable(void *dst, size_t dstCapacity, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt); 278 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits); 281 size_t FSE_buildDTable_rle(FSE_DTable *dt, unsigned char symbolValue); 358 static void FSE_initDState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD, const FSE_DTable *dt); 481 ZSTD_STATIC void FSE_initDState(FSE_DState_t *DStatePtr, BIT_DStream_t *bitD, const FSE_DTable *dt) in FSE_initDState()
|
D | decompress.c | 69 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)]; 78 const FSE_DTable *LLTptr; 79 const FSE_DTable *MLTptr; 80 const FSE_DTable *OFTptr; 752 static size_t ZSTD_buildSeqTable(FSE_DTable *DTableSpace, const FSE_DTable **DTablePtr, symbolEncod… in ZSTD_buildSeqTable() 765 case set_basic: *DTablePtr = (const FSE_DTable *)tmpPtr; return 0; in ZSTD_buildSeqTable()
|