Lines Matching refs:src
125 Compress `src` using `ct` into `dst` which must be already allocated.
129 FSE_PUBLIC_API size_t FSE_compress_usingCTable(void *dst, size_t dstCapacity, const void *src, size_t srcSize, const FSE_CTable *ct);
136 'src' is a table of bytes of size 'srcSize'. All values within 'src' MUST be <= maxSymbolValuePtr[0]
139 This can be used to know if there is a single symbol within 'src', and to quickly evaluate its compressibility.
167 'CTable' can then be used to compress 'src', with FSE_compress_usingCTable().
168 Similar to FSE_count(), the convention is that 'src' is assumed to be a table of char of size 'srcSize'
255 size_t FSE_countFast_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *src, size_t srcSize, unsigned *workSpace);
259 * This function is unsafe, and will segfault if any value within `src` is `> *maxSymbolValuePtr` (presuming it's also the size of `count`).
261 size_t FSE_count_simple(unsigned *count, unsigned *maxSymbolValuePtr, const void *src, size_t srcSize);