Searched refs:code_ll (Results 1 – 1 of 1) sorted by relevance
1332 unsigned code_ll; in inflateHuffmanBlock() local1336 code_ll = huffmanDecodeSymbol(reader, &tree_ll); in inflateHuffmanBlock()1337 if(code_ll <= 255) { in inflateHuffmanBlock()1339 out->data[out->size++] = (unsigned char)code_ll; in inflateHuffmanBlock()1340 code_ll = huffmanDecodeSymbol(reader, &tree_ll); in inflateHuffmanBlock()1342 if(code_ll <= 255) { /*literal symbol*/ in inflateHuffmanBlock()1343 out->data[out->size++] = (unsigned char)code_ll; in inflateHuffmanBlock()1345 … else if(code_ll >= FIRST_LENGTH_CODE_INDEX && code_ll <= LAST_LENGTH_CODE_INDEX) { /*length code*/ in inflateHuffmanBlock()1351 length = LENGTHBASE[code_ll - FIRST_LENGTH_CODE_INDEX]; in inflateHuffmanBlock()1354 numextrabits_l = LENGTHEXTRA[code_ll - FIRST_LENGTH_CODE_INDEX]; in inflateHuffmanBlock()[all …]