Searched refs:code_ll (Results 1 – 1 of 1) sorted by relevance
1276 unsigned code_ll; in inflateHuffmanBlock() local1278 code_ll = huffmanDecodeSymbol(reader, &tree_ll); in inflateHuffmanBlock()1279 if(code_ll <= 255) /*literal symbol*/ { in inflateHuffmanBlock()1281 out->data[out->size - 1] = (unsigned char)code_ll; in inflateHuffmanBlock()1282 …} else if(code_ll >= FIRST_LENGTH_CODE_INDEX && code_ll <= LAST_LENGTH_CODE_INDEX) /*length code*/… in inflateHuffmanBlock()1288 length = LENGTHBASE[code_ll - FIRST_LENGTH_CODE_INDEX]; in inflateHuffmanBlock()1291 numextrabits_l = LENGTHEXTRA[code_ll - FIRST_LENGTH_CODE_INDEX]; in inflateHuffmanBlock()1332 } else if(code_ll == 256) { in inflateHuffmanBlock()