Searched refs:numLiteralBlockTypes (Results 1 – 4 of 4) sorted by relevance
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 506 s.literalBlockLength = decodeBlockTypeAndLength(s, 0, s.numLiteralBlockTypes); in decodeLiteralBlockSwitch() 595 s.numLiteralBlockTypes = decodeVarLenUnsignedByte(s) + 1; in readMetablockHuffmanCodesAndContextMaps() 596 s.literalBlockLength = readMetablockPartition(s, 0, s.numLiteralBlockTypes); in readMetablockHuffmanCodesAndContextMaps() 610 s.contextModes = new byte[s.numLiteralBlockTypes]; in readMetablockHuffmanCodesAndContextMaps() 611 for (int i = 0; i < s.numLiteralBlockTypes;) { in readMetablockHuffmanCodesAndContextMaps() 613 int limit = Math.min(i + 96, s.numLiteralBlockTypes); in readMetablockHuffmanCodesAndContextMaps() 622 s.contextMap = new byte[s.numLiteralBlockTypes << LITERAL_CONTEXT_BITS]; in readMetablockHuffmanCodesAndContextMaps() 623 int numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << LITERAL_CONTEXT_BITS, in readMetablockHuffmanCodesAndContextMaps() 626 for (int j = 0; j < s.numLiteralBlockTypes << LITERAL_CONTEXT_BITS; j++) { in readMetablockHuffmanCodesAndContextMaps()
|
D | State.java | 42 int numLiteralBlockTypes; field in State
|
/external/brotli/js/ |
D | decode.js | 523 s.literalBlockLength = decodeBlockTypeAndLength(s, 0, s.numLiteralBlockTypes); 630 s.numLiteralBlockTypes = decodeVarLenUnsignedByte(s) + 1; 631 s.literalBlockLength = readMetablockPartition(s, 0, s.numLiteralBlockTypes); 647 s.contextModes = new Int8Array(s.numLiteralBlockTypes); 648 for (var /** !number */ i = 0; i < s.numLiteralBlockTypes; ) { 649 var /** !number */ limit = min(i + 96, s.numLiteralBlockTypes); 661 s.contextMap = new Int8Array(s.numLiteralBlockTypes << 6); 662 …var /** !number */ numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << 6, s.contextMap, s… 664 for (var /** !number */ j = 0; j < s.numLiteralBlockTypes << 6; j++) { 1531 this.numLiteralBlockTypes = 0;
|
D | decode.min.js | 1 …numLiteralBlockTypes);var t=e.rings[5];e.contextMapSlice=t<<6;e.literalTreeIndex=e.contextMap[e.co…
|