Lines Matching refs:size_t

46 #include <linux/types.h> /* size_t, ptrdiff_t */
69 FSE_PUBLIC_API size_t FSE_compressBound(size_t size); /* maximum compressed size */
72 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */
100 FSE_PUBLIC_API unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue);
107 FSE_PUBLIC_API size_t FSE_normalizeCount(short *normalizedCounter, unsigned tableLog, const unsigned *count, size_t srcSize, unsigned maxSymbolValue);
112 FSE_PUBLIC_API size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog);
118 FSE_PUBLIC_API size_t FSE_writeNCount(void *buffer, size_t bufferSize, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
129 FSE_PUBLIC_API size_t FSE_compress_usingCTable(void *dst, size_t dstCapacity, const void *src, size_t srcSize, const FSE_CTable *ct);
181 FSE_PUBLIC_API size_t FSE_readNCount(short *normalizedCounter, unsigned *maxSymbolValuePtr, unsigned *tableLogPtr, const void *rBuffer, size_t rBuffSize);
190 FSE_PUBLIC_API size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace, size_t workspaceSize);
197 FSE_PUBLIC_API size_t FSE_decompress_usingDTable(void *dst, size_t dstCapacity, const void *cSrc, size_t cSrcSize, const FSE_DTable *dt);
249 size_t FSE_count_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *source, size_t sourceSize, unsigned *workSpace);
255 size_t FSE_countFast_wksp(unsigned *count, unsigned *maxSymbolValuePtr, const void *src, size_t srcSize, unsigned *workSpace);
261 size_t FSE_count_simple(unsigned *count, unsigned *maxSymbolValuePtr, const void *src, size_t srcSize);
263 unsigned FSE_optimalTableLog_internal(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue, unsigned minus);
266 size_t FSE_buildCTable_raw(FSE_CTable *ct, unsigned nbBits);
269 size_t FSE_buildCTable_rle(FSE_CTable *ct, unsigned char symbolValue);
276 size_t FSE_buildCTable_wksp(FSE_CTable *ct, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workSpace, size_t wkspSize);
278 size_t FSE_buildDTable_raw(FSE_DTable *dt, unsigned nbBits);
281 size_t FSE_buildDTable_rle(FSE_DTable *dt, unsigned char symbolValue);
284 size_t FSE_decompress_wksp(void *dst, size_t dstCapacity, const void *cSrc, size_t cSrcSize, unsigned maxLog, void *workspace, size_t workspaceSize);
322 size_t errorCode = BIT_initCStream(&bitStream, dstBuffer, maxDstSize);
336 Local register size is 64-bits on 64-bits systems, 32-bits on 32-bits systems (size_t).
347 size_t size = BIT_closeCStream(&bitStream);
354 size_t state;
389 size_t bitField = BIT_readBits(&DStream, nbBits);
391 All above operations only read from local register (which size depends on size_t).
500 size_t const lowBits = BIT_readBits(bitD, nbBits);
509 size_t const lowBits = BIT_readBits(bitD, nbBits);
522 size_t const lowBits = BIT_readBitsFast(bitD, nbBits);