• Home
  • Raw
  • Download

Lines Matching refs:BrotliDecoderErrorCode

115     BrotliDecoderState* s, BrotliDecoderErrorCode e) {  in SaveErrorCode()
134 static BrotliDecoderErrorCode DecodeWindowBits(BrotliDecoderState* s, in DecodeWindowBits()
181 static BROTLI_NOINLINE BrotliDecoderErrorCode DecodeVarLenUint8( in DecodeVarLenUint8()
225 static BrotliDecoderErrorCode BROTLI_NOINLINE DecodeMetaBlockLength( in DecodeMetaBlockLength()
475 static BrotliDecoderErrorCode ReadSimpleHuffmanSymbols( in ReadSimpleHuffmanSymbols()
593 static BrotliDecoderErrorCode ReadSymbolCodeLengths( in ReadSymbolCodeLengths()
643 static BrotliDecoderErrorCode SafeReadSymbolCodeLengths( in SafeReadSymbolCodeLengths()
692 static BrotliDecoderErrorCode ReadCodeLengthCodeLengths(BrotliDecoderState* s) { in ReadCodeLengthCodeLengths()
748 static BrotliDecoderErrorCode ReadHuffmanCode(uint32_t alphabet_size_max, in ReadHuffmanCode()
788 BrotliDecoderErrorCode result = in ReadHuffmanCode()
819 BrotliDecoderErrorCode result = ReadCodeLengthCodeLengths(s); in ReadHuffmanCode()
843 BrotliDecoderErrorCode result = ReadSymbolCodeLengths( in ReadHuffmanCode()
962 static BrotliDecoderErrorCode HuffmanTreeGroupDecode( in HuffmanTreeGroupDecode()
972 BrotliDecoderErrorCode result = ReadHuffmanCode(group->alphabet_size_max, in HuffmanTreeGroupDecode()
991 static BrotliDecoderErrorCode DecodeContextMap(uint32_t context_map_size, in DecodeContextMap()
996 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; in DecodeContextMap()
1267 static BrotliDecoderErrorCode BROTLI_NOINLINE WriteRingBuffer( in WriteRingBuffer()
1355 static BrotliDecoderErrorCode BROTLI_NOINLINE CopyUncompressedBlockToOutput( in CopyUncompressedBlockToOutput()
1389 BrotliDecoderErrorCode result; in CopyUncompressedBlockToOutput()
1452 static BrotliDecoderErrorCode ReadContextModes(BrotliDecoderState* s) { in ReadContextModes()
1734 static BROTLI_INLINE BrotliDecoderErrorCode ProcessCommandsInternal( in ProcessCommandsInternal()
1738 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; in ProcessCommandsInternal()
2025 static BROTLI_NOINLINE BrotliDecoderErrorCode ProcessCommands( in ProcessCommands()
2030 static BROTLI_NOINLINE BrotliDecoderErrorCode SafeProcessCommands( in SafeProcessCommands()
2072 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; in BrotliDecoderDecompressStream()
2103 BrotliDecoderErrorCode intermediate_result = WriteRingBuffer(s, in BrotliDecoderDecompressStream()
2555 BrotliDecoderErrorCode status; in BrotliDecoderTakeOutput()
2586 BrotliDecoderErrorCode BrotliDecoderGetErrorCode(const BrotliDecoderState* s) { in BrotliDecoderGetErrorCode()
2587 return (BrotliDecoderErrorCode)s->error_code; in BrotliDecoderGetErrorCode()
2590 const char* BrotliDecoderErrorString(BrotliDecoderErrorCode c) { in BrotliDecoderErrorString()