• Home
  • Raw
  • Download

Lines Matching refs:BrotliDecoderErrorCode

114     BrotliDecoderState* s, BrotliDecoderErrorCode e) {  in SaveErrorCode()
133 static BrotliDecoderErrorCode DecodeWindowBits(BrotliDecoderState* s, in DecodeWindowBits()
180 static BROTLI_NOINLINE BrotliDecoderErrorCode DecodeVarLenUint8( in DecodeVarLenUint8()
224 static BrotliDecoderErrorCode BROTLI_NOINLINE DecodeMetaBlockLength( in DecodeMetaBlockLength()
472 static BrotliDecoderErrorCode ReadSimpleHuffmanSymbols( in ReadSimpleHuffmanSymbols()
588 static BrotliDecoderErrorCode ReadSymbolCodeLengths( in ReadSymbolCodeLengths()
637 static BrotliDecoderErrorCode SafeReadSymbolCodeLengths( in SafeReadSymbolCodeLengths()
685 static BrotliDecoderErrorCode ReadCodeLengthCodeLengths(BrotliDecoderState* s) { in ReadCodeLengthCodeLengths()
740 static BrotliDecoderErrorCode ReadHuffmanCode(uint32_t alphabet_size, in ReadHuffmanCode()
781 BrotliDecoderErrorCode result = in ReadHuffmanCode()
812 BrotliDecoderErrorCode result = ReadCodeLengthCodeLengths(s); in ReadHuffmanCode()
836 BrotliDecoderErrorCode result = ReadSymbolCodeLengths(max_symbol, s); in ReadHuffmanCode()
953 static BrotliDecoderErrorCode HuffmanTreeGroupDecode( in HuffmanTreeGroupDecode()
962 BrotliDecoderErrorCode result = in HuffmanTreeGroupDecode()
982 static BrotliDecoderErrorCode DecodeContextMap(uint32_t context_map_size, in DecodeContextMap()
987 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; in DecodeContextMap()
1257 static BrotliDecoderErrorCode BROTLI_NOINLINE WriteRingBuffer( in WriteRingBuffer()
1345 static BrotliDecoderErrorCode BROTLI_NOINLINE CopyUncompressedBlockToOutput( in CopyUncompressedBlockToOutput()
1379 BrotliDecoderErrorCode result; in CopyUncompressedBlockToOutput()
1442 static BrotliDecoderErrorCode ReadContextModes(BrotliDecoderState* s) { in ReadContextModes()
1637 static BROTLI_INLINE BrotliDecoderErrorCode ProcessCommandsInternal( in ProcessCommandsInternal()
1641 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; in ProcessCommandsInternal()
1928 static BROTLI_NOINLINE BrotliDecoderErrorCode ProcessCommands( in ProcessCommands()
1933 static BROTLI_NOINLINE BrotliDecoderErrorCode SafeProcessCommands( in SafeProcessCommands()
1990 BrotliDecoderErrorCode result = BROTLI_DECODER_SUCCESS; in BrotliDecoderDecompressStream()
2021 BrotliDecoderErrorCode intermediate_result = WriteRingBuffer(s, in BrotliDecoderDecompressStream()
2453 BrotliDecoderErrorCode status; in BrotliDecoderTakeOutput()
2484 BrotliDecoderErrorCode BrotliDecoderGetErrorCode(const BrotliDecoderState* s) { in BrotliDecoderGetErrorCode()
2485 return (BrotliDecoderErrorCode)s->error_code; in BrotliDecoderGetErrorCode()
2488 const char* BrotliDecoderErrorString(BrotliDecoderErrorCode c) { in BrotliDecoderErrorString()