Searched refs:context_map_size (Results 1 – 2 of 2) sorted by relevance
/external/brotli/c/dec/ |
D | decode.c | 982 static BrotliDecoderErrorCode DecodeContextMap(uint32_t context_map_size, in DecodeContextMap() argument 997 BROTLI_LOG_UINT(context_map_size); in DecodeContextMap() 1000 (uint8_t*)BROTLI_DECODER_ALLOC(s, (size_t)context_map_size); in DecodeContextMap() 1005 memset(*context_map_arg, 0, (size_t)context_map_size); in DecodeContextMap() 1046 while (context_index < context_map_size || skip_preamble) { in DecodeContextMap() 1077 if (context_index + reps > context_map_size) { in DecodeContextMap() 1096 InverseMoveToFrontTransform(*context_map_arg, context_map_size, s); in DecodeContextMap()
|
/external/brotli/c/enc/ |
D | brotli_bit_stream.c | 697 size_t context_map_size, in EncodeContextMap() argument 716 rle_symbols = BROTLI_ALLOC(m, uint32_t, context_map_size); in EncodeContextMap() 718 MoveToFrontTransform(context_map, context_map_size, rle_symbols); in EncodeContextMap() 719 RunLengthCodeZeros(context_map_size, rle_symbols, in EncodeContextMap()
|