• Home
  • Raw
  • Download

Lines Matching refs:BrotliDecoderState

62     BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) {  in BrotliDecoderSetParameter()
77 BrotliDecoderState* BrotliDecoderCreateInstance( in BrotliDecoderCreateInstance()
79 BrotliDecoderState* state = 0; in BrotliDecoderCreateInstance()
81 state = (BrotliDecoderState*)malloc(sizeof(BrotliDecoderState)); in BrotliDecoderCreateInstance()
83 state = (BrotliDecoderState*)alloc_func(opaque, sizeof(BrotliDecoderState)); in BrotliDecoderCreateInstance()
102 void BrotliDecoderDestroyInstance(BrotliDecoderState* state) { in BrotliDecoderDestroyInstance()
115 BrotliDecoderState* s, BrotliDecoderErrorCode e) { in SaveErrorCode()
134 static BrotliDecoderErrorCode DecodeWindowBits(BrotliDecoderState* s, in DecodeWindowBits()
182 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8()
226 BrotliDecoderState* s, BrotliBitReader* br) { in DecodeMetaBlockLength()
477 BrotliDecoderState* s) { in ReadSimpleHuffmanSymbols()
594 uint32_t alphabet_size, BrotliDecoderState* s) { in ReadSymbolCodeLengths()
644 uint32_t alphabet_size, BrotliDecoderState* s) { in SafeReadSymbolCodeLengths()
692 static BrotliDecoderErrorCode ReadCodeLengthCodeLengths(BrotliDecoderState* s) { in ReadCodeLengthCodeLengths()
752 BrotliDecoderState* s) { in ReadHuffmanCode()
885 BrotliDecoderState* s, uint32_t* result, const HuffmanCode* table, in SafeReadBlockLength()
925 uint8_t* v, uint32_t v_len, BrotliDecoderState* state) { in InverseMoveToFrontTransform()
963 HuffmanTreeGroup* group, BrotliDecoderState* s) { in HuffmanTreeGroupDecode()
994 BrotliDecoderState* s) { in DecodeContextMap()
1121 int safe, BrotliDecoderState* s, int tree_type) { in DecodeBlockTypeAndLength()
1165 BrotliDecoderState* s) { in DetectTrivialLiteralBlockTypes()
1182 static BROTLI_INLINE void PrepareLiteralDecoding(BrotliDecoderState* s) { in PrepareLiteralDecoding()
1198 int safe, BrotliDecoderState* s) { in DecodeLiteralBlockSwitchInternal()
1206 static void BROTLI_NOINLINE DecodeLiteralBlockSwitch(BrotliDecoderState* s) { in DecodeLiteralBlockSwitch()
1211 BrotliDecoderState* s) { in SafeDecodeLiteralBlockSwitch()
1218 int safe, BrotliDecoderState* s) { in DecodeCommandBlockSwitchInternal()
1226 static void BROTLI_NOINLINE DecodeCommandBlockSwitch(BrotliDecoderState* s) { in DecodeCommandBlockSwitch()
1231 BrotliDecoderState* s) { in SafeDecodeCommandBlockSwitch()
1238 int safe, BrotliDecoderState* s) { in DecodeDistanceBlockSwitchInternal()
1248 static void BROTLI_NOINLINE DecodeDistanceBlockSwitch(BrotliDecoderState* s) { in DecodeDistanceBlockSwitch()
1253 BrotliDecoderState* s) { in SafeDecodeDistanceBlockSwitch()
1257 static size_t UnwrittenBytes(const BrotliDecoderState* s, BROTLI_BOOL wrap) { in UnwrittenBytes()
1268 BrotliDecoderState* s, size_t* available_out, uint8_t** next_out, in WriteRingBuffer()
1312 static void BROTLI_NOINLINE WrapRingBuffer(BrotliDecoderState* s) { in WrapRingBuffer()
1327 BrotliDecoderState* s) { in BrotliEnsureRingBuffer()
1357 BrotliDecoderState* s) { in CopyUncompressedBlockToOutput()
1413 BrotliDecoderState* s) { in BrotliCalculateRingBufferSize()
1452 static BrotliDecoderErrorCode ReadContextModes(BrotliDecoderState* s) { in ReadContextModes()
1469 static BROTLI_INLINE void TakeDistanceFromRingBuffer(BrotliDecoderState* s) { in TakeDistanceFromRingBuffer()
1583 static void CalculateDistanceLut(BrotliDecoderState* s) { in CalculateDistanceLut()
1619 int safe, BrotliDecoderState* s, BrotliBitReader* br) { in ReadDistanceInternal()
1657 BrotliDecoderState* s, BrotliBitReader* br) { in ReadDistance()
1662 BrotliDecoderState* s, BrotliBitReader* br) { in SafeReadDistance()
1667 int safe, BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in ReadCommandInternal()
1705 BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in ReadCommand()
1710 BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in SafeReadCommand()
1735 int safe, BrotliDecoderState* s) { in ProcessCommandsInternal()
2026 BrotliDecoderState* s) { in ProcessCommands()
2031 BrotliDecoderState* s) { in SafeProcessCommands()
2038 BrotliDecoderState s; in BrotliDecoderDecompress()
2070 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, in BrotliDecoderDecompressStream()
2542 BROTLI_BOOL BrotliDecoderHasMoreOutput(const BrotliDecoderState* s) { in BrotliDecoderHasMoreOutput()
2551 const uint8_t* BrotliDecoderTakeOutput(BrotliDecoderState* s, size_t* size) { in BrotliDecoderTakeOutput()
2576 BROTLI_BOOL BrotliDecoderIsUsed(const BrotliDecoderState* s) { in BrotliDecoderIsUsed()
2581 BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* s) { in BrotliDecoderIsFinished()
2586 BrotliDecoderErrorCode BrotliDecoderGetErrorCode(const BrotliDecoderState* s) { in BrotliDecoderGetErrorCode()