Home
last modified time | relevance | path

Searched refs:code_ll (Results 1 – 1 of 1) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
Dlodepng.cpp1103 unsigned code_ll = huffmanDecodeSymbol(in, bp, &tree_ll, inbitlength); in inflateHuffmanBlock() local
1104 if(code_ll <= 255) /*literal symbol*/ in inflateHuffmanBlock()
1111 out->data[(*pos)] = (unsigned char)(code_ll); in inflateHuffmanBlock()
1114 else if(code_ll >= FIRST_LENGTH_CODE_INDEX && code_ll <= LAST_LENGTH_CODE_INDEX) /*length code*/ in inflateHuffmanBlock()
1121 length = LENGTHBASE[code_ll - FIRST_LENGTH_CODE_INDEX]; in inflateHuffmanBlock()
1124 numextrabits_l = LENGTHEXTRA[code_ll - FIRST_LENGTH_CODE_INDEX]; in inflateHuffmanBlock()
1132 … if(code_ll == (unsigned)(-1)) /*huffmanDecodeSymbol returns (unsigned)(-1) in case of error*/ in inflateHuffmanBlock()
1167 else if(code_ll == 256) in inflateHuffmanBlock()