Lines Matching refs:buffer
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).
68 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
69 into already allocated destination buffer 'dst', of size 'dstCapacity'.
112 3. save normalized counters to memory buffer using writeNCount()
154 Compactly save 'normalizedCounter' into 'buffer'.
157 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
205 'buffer' must be already allocated.
206 For guaranteed success, buffer size must be at least FSE_headerBound().
207 The result of the function is the number of bytes written into 'buffer'.
208 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError(); ex : buffer size too small).
284 If there is an error, the function will return an error code, which can be tested using FSE_isError(). (ex: dst buffer too small)
299 /* FSE buffer bounds */
321 * Same as FSE_compress2(), but using an externally allocated scratch buffer (`workSpace`).
334 * Same as FSE_buildCTable(), but using an externally allocated scratch buffer (`workSpace`).
479 BIT_DStream_endOfBuffer : Dstream reached end of buffer. Its container may no longer be completely filled.
483 When reaching end of buffer (BIT_DStream_endOfBuffer), progress slowly, notably if you decode multiple symbols per loop,