Home
last modified time | relevance | path

Searched refs:BIT_CStream_t (Results 1 – 4 of 4) sorted by relevance

/linux/lib/zstd/common/
H A Dbitstream.h56 } BIT_CStream_t; typedef
58 MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, void* dstBuffer, size_t dstCapacity);
59 MEM_STATIC void BIT_addBits(BIT_CStream_t* bitC, BitContainerType value, unsigned nbBits);
60 MEM_STATIC void BIT_flushBits(BIT_CStream_t* bitC);
61 MEM_STATIC size_t BIT_closeCStream(BIT_CStream_t* bitC);
118 MEM_STATIC void BIT_addBitsFast(BIT_CStream_t* bitC, BitContainerType value, unsigned nbBits);
121 MEM_STATIC void BIT_flushBitsFast(BIT_CStream_t* bitC);
144 MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, in BIT_initCStream()
165 MEM_STATIC void BIT_addBits(BIT_CStream_t* bitC, in BIT_addBits()
178 MEM_STATIC void BIT_addBitsFast(BIT_CStream_t* bitC, in BIT_addBitsFast()
[all …]
H A Dfse.h301 static void FSE_encodeSymbol(BIT_CStream_t* bitC, FSE_CState_t* CStatePtr, unsigned symbol);
303 static void FSE_flushCState(BIT_CStream_t* bitC, const FSE_CState_t* CStatePtr);
455 MEM_STATIC void FSE_encodeSymbol(BIT_CStream_t* bitC, FSE_CState_t* statePtr, unsigned symbol) in FSE_encodeSymbol()
464 MEM_STATIC void FSE_flushCState(BIT_CStream_t* bitC, const FSE_CState_t* statePtr) in FSE_flushCState()
/linux/lib/zstd/compress/
H A Dzstd_compress_sequences.c299 BIT_CStream_t blockStream; in ZSTD_encodeSequences_body()
H A Dfse_compress.c560 BIT_CStream_t bitC; in FSE_compress_usingCTable_generic()