Searched refs:maxRunLengthPrefix (Results 1 – 3 of 3) sorted by relevance
627 int maxRunLengthPrefix = 0; in decodeContextMap() local629 maxRunLengthPrefix = BitReader.readFewBits(s, 4) + 1; in decodeContextMap()631 int alphabetSize = numTrees + maxRunLengthPrefix; in decodeContextMap()644 } else if (code <= maxRunLengthPrefix) { in decodeContextMap()656 contextMap[i] = (byte) (code - maxRunLengthPrefix); in decodeContextMap()
359 int maxRunLengthPrefix = 0; in DecodeContextMap()362 maxRunLengthPrefix = Org.Brotli.Dec.BitReader.ReadBits(br, 4) + 1; in DecodeContextMap()365 ReadHuffmanCode(numTrees + maxRunLengthPrefix, table, 0, br); in DecodeContextMap()376 else if (code <= maxRunLengthPrefix) in DecodeContextMap()393 contextMap[i] = unchecked((byte)(code - maxRunLengthPrefix)); in DecodeContextMap()
571 var /** number */ maxRunLengthPrefix = 0;573 maxRunLengthPrefix = readFewBits(s, 4) + 1;575 var /** number */ alphabetSize = numTrees + maxRunLengthPrefix;592 } else if (code <= maxRunLengthPrefix) {607 contextMap[i] = (code - maxRunLengthPrefix);