Lines Matching refs:BrotliEncoderState

131 static size_t InputBlockSize(BrotliEncoderState* s) {  in InputBlockSize()
135 static uint64_t UnprocessedInputSize(BrotliEncoderState* s) { in UnprocessedInputSize()
139 static size_t RemainingInputBlockSize(BrotliEncoderState* s) { in RemainingInputBlockSize()
147 BrotliEncoderState* state, BrotliEncoderParameter p, uint32_t value) { in BrotliEncoderSetParameter()
210 static uint8_t* GetBrotliStorage(BrotliEncoderState* s, size_t size) { in GetBrotliStorage()
229 static int* GetHashTable(BrotliEncoderState* s, int quality, in GetHashTable()
688 static BROTLI_BOOL EnsureInitialized(BrotliEncoderState* s) { in EnsureInitialized()
757 static void BrotliEncoderInitState(BrotliEncoderState* s) { in BrotliEncoderInitState()
797 BrotliEncoderState* BrotliEncoderCreateInstance( in BrotliEncoderCreateInstance()
799 BrotliEncoderState* state = 0; in BrotliEncoderCreateInstance()
801 state = (BrotliEncoderState*)malloc(sizeof(BrotliEncoderState)); in BrotliEncoderCreateInstance()
803 state = (BrotliEncoderState*)alloc_func(opaque, sizeof(BrotliEncoderState)); in BrotliEncoderCreateInstance()
815 static void BrotliEncoderCleanupState(BrotliEncoderState* s) { in BrotliEncoderCleanupState()
831 void BrotliEncoderDestroyInstance(BrotliEncoderState* state) { in BrotliEncoderDestroyInstance()
850 static void CopyInputToRingBuffer(BrotliEncoderState* s, in CopyInputToRingBuffer()
907 static BROTLI_BOOL UpdateLastProcessedPos(BrotliEncoderState* s) { in UpdateLastProcessedPos()
914 static void ExtendLastCommand(BrotliEncoderState* s, uint32_t* bytes, in ExtendLastCommand()
961 BrotliEncoderState* s, const BROTLI_BOOL is_last, in EncodeData()
1181 BrotliEncoderState* s, const size_t block_size, uint8_t* header) { in WriteMetadataHeader()
1475 BrotliEncoderState* s; in BrotliEncoderCompress()
1540 static void InjectBytePaddingBlock(BrotliEncoderState* s) { in InjectBytePaddingBlock()
1565 static BROTLI_BOOL InjectFlushOrPushOutput(BrotliEncoderState* s, in InjectFlushOrPushOutput()
1589 static void CheckFlushComplete(BrotliEncoderState* s) { in CheckFlushComplete()
1598 BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, in BrotliEncoderCompressStreamFast()
1722 BrotliEncoderState* s, size_t* available_in, const uint8_t** next_in, in ProcessMetadata()
1789 static void UpdateSizeHint(BrotliEncoderState* s, size_t available_in) { in UpdateSizeHint()
1805 BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, in BrotliEncoderCompressStream()
1893 BROTLI_BOOL BrotliEncoderIsFinished(BrotliEncoderState* s) { in BrotliEncoderIsFinished()
1898 BROTLI_BOOL BrotliEncoderHasMoreOutput(BrotliEncoderState* s) { in BrotliEncoderHasMoreOutput()
1902 const uint8_t* BrotliEncoderTakeOutput(BrotliEncoderState* s, size_t* size) { in BrotliEncoderTakeOutput()