Searched refs:context_map_size (Results 1 – 2 of 2) sorted by relevance
/external/brotli/c/dec/ |
D | decode.c | 991 static BrotliDecoderErrorCode DecodeContextMap(uint32_t context_map_size, in DecodeContextMap() argument 1007 BROTLI_LOG_UINT(context_map_size); in DecodeContextMap() 1010 (uint8_t*)BROTLI_DECODER_ALLOC(s, (size_t)context_map_size); in DecodeContextMap() 1015 memset(*context_map_arg, 0, (size_t)context_map_size); in DecodeContextMap() 1056 while (context_index < context_map_size || skip_preamble) { in DecodeContextMap() 1087 if (context_index + reps > context_map_size) { in DecodeContextMap() 1106 InverseMoveToFrontTransform(*context_map_arg, context_map_size, s); in DecodeContextMap()
|
/external/brotli/c/enc/ |
D | brotli_bit_stream.c | 682 size_t context_map_size, in EncodeContextMap() argument 701 rle_symbols = BROTLI_ALLOC(m, uint32_t, context_map_size); in EncodeContextMap() 703 MoveToFrontTransform(context_map, context_map_size, rle_symbols); in EncodeContextMap() 704 RunLengthCodeZeros(context_map_size, rle_symbols, in EncodeContextMap()
|