Searched refs:decodeBlockTypeAndLength (Results 1 – 2 of 2) sorted by relevance
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 483 private static int decodeBlockTypeAndLength(State s, int treeType, int numBlockTypes) { in decodeBlockTypeAndLength() method in Decode 506 s.literalBlockLength = decodeBlockTypeAndLength(s, 0, s.numLiteralBlockTypes); in decodeLiteralBlockSwitch() 517 s.commandBlockLength = decodeBlockTypeAndLength(s, 1, s.numCommandBlockTypes); in decodeCommandBlockSwitch() 522 s.distanceBlockLength = decodeBlockTypeAndLength(s, 2, s.numDistanceBlockTypes); in decodeDistanceBlockSwitch()
|
/external/brotli/js/ |
D | decode.js | 495 function decodeBlockTypeAndLength(s, treeType, numBlockTypes) { function in BrotliDecodeClosure 523 s.literalBlockLength = decodeBlockTypeAndLength(s, 0, s.numLiteralBlockTypes); 537 s.commandBlockLength = decodeBlockTypeAndLength(s, 1, s.numCommandBlockTypes); 545 s.distanceBlockLength = decodeBlockTypeAndLength(s, 2, s.numDistanceBlockTypes);
|