Lines Matching refs:srcSize
57 Compress content of buffer 'src', of size 'srcSize', into destination buffer 'dst'.
58 'dst' buffer must be already allocated. Compression runs faster is dstCapacity >= FSE_compressBound(srcSize).
61 if return == 1, srcData is a single byte symbol * srcSize times. Use RLE compression instead.
65 const void* src, size_t srcSize);
99 if return == 1, srcData is a single byte symbol * srcSize times. Use RLE compression.
102 FSE_PUBLIC_API size_t FSE_compress2 (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog);
132 FSE_PUBLIC_API unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue);
146 const unsigned* count, size_t srcSize, unsigned maxSymbolValue, unsigned useLowProbCount);
177 FSE_PUBLIC_API size_t FSE_compress_usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct);
184 'src' is a table of bytes of size 'srcSize'. All values within 'src' MUST be <= maxSymbolValuePtr[0]
216 Similar to FSE_count(), the convention is that 'src' is assumed to be a table of char of size 'srcSize'
317 unsigned FSE_optimalTableLog_internal(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue, unsigned minus);
325 size_t FSE_compress_wksp (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize);
458 errorCode = BIT_initDStream(&DStream, srcBuffer, srcSize);