• Home
  • Raw
  • Download

Lines Matching full:using

81 3. save normalized counters to memory buffer using writeNCount()
83 5. encode the data stream using encoding table 'CTable'
88 3. decode the data stream using decoding table 'DTable'
91 For example, it's possible to compress several blocks using the same 'CTable',
92 or to save and provide normalized distribution using external method.
98 It saves CPU time, by using smaller tables, while preserving or even improving compression ratio.
106 or an errorCode, which can be tested using FSE_isError() */
117 or an errorCode, which can be tested using FSE_isError(). */
125 Compress `src` using `ct` into `dst` which must be already allocated.
128 or an errorCode, which can be tested using FSE_isError() */
140 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError(…
154 …d tableLog value), the function will return an ErrorCode (which can be tested using FSE_isError()).
156 'normalizedCounter' can be saved in a compact manner to a memory area using FSE_writeNCount().
160 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError(…
163 The space required by 'CTable' must be already allocated, using FSE_createCTable().
165 If there is an error, both functions will return an ErrorCode (which can be tested using FSE_isErro…
171 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError(…
179 or an errorCode, which can be tested using FSE_isError().
188 Builds 'dt', which must be already allocated, using FSE_createDTable().
189 return : 0, or an errorCode, which can be tested using FSE_isError() */
193 Decompress compressed source `cSrc` of size `cSrcSize` using `dt`
196 or an errorCode, which can be tested using FSE_isError() */
207 This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount().
214 If there is an error, the function will return an error code, which can be tested using FSE_isError…
218 The space required by 'FSE_DTable' must be already allocated using FSE_createDTable().
219 If there is an error, the function will return an error code, which can be tested using FSE_isError…
224 If there is an error, the function will return an error code, which can be tested using FSE_isError…
238 … to statically allocate FSE CTable/DTable as a table of FSE_CTable/FSE_DTable using below macros */
246 * Same as FSE_count(), but using an externally provided scratch buffer.
252 * Same as FSE_countFast(), but using an externally provided scratch buffer.
273 * Same as FSE_buildCTable(), but using an externally allocated scratch buffer (`workSpace`).
285 /**< same as FSE_decompress(), using an externally allocated `workSpace` produced with `FSE_DTABLE_…
325 Note that BIT_initCStream() can produce an error code, so its result should be tested, using FSE_is…
346 If there is an error, it returns an errorCode (which can be tested using FSE_isError()).
403 After each decoded symbol, check if DStream is fully consumed using this simple test :