Lines Matching full:fse
2 * FSE : Finite State Entropy codec
57 * FSE simple functions
71 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
95 * FSE advanced functions
109 * FSE detailed API
152 …Provides the maximum possible size of an FSE normalized table, given 'maxSymbolValue' and 'tableLo…
265 (Note : these functions only decompress FSE-compressed blocks.
302 /* FSE buffer bounds */
304 #define FSE_BLOCKBOUND(size) ((size) + ((size)>>7) + 4 /* fse states */ + sizeof(size_t) /* bitCont…
307 /* It is possible to statically allocate FSE CTable/DTable as a table of FSE_CTable/FSE_DTable usin…
317 * FSE advanced API
371 * FSE symbol compression API
423 Your last FSE encoding operation shall be to flush your last state value(s).
435 * FSE symbol decompression API
451 You will decode FSE-encoded symbols from the bitStream,
500 * FSE unsafe API