/external/zopfli/src/zopflipng/lodepng/ |
lodepng_util.h | 130 int hclen; //the HCLEN value that was filled in for this tree member in struct:lodepng::ZlibBlockInfo
|
lodepng_util.cpp | 416 size_t HCLEN = readBitsFromStream(bp, in, 4) + 4; //number of code length codes + 4 419 zlibinfo->back().hclen = HCLEN - 4; 421 for(size_t i = 0; i < 19; i++) codelengthcode[CLCL[i]] = (i < HCLEN) ? readBitsFromStream(bp, in, 3) : 0;
|
/external/zopfli/src/zopfli/ |
deflate.c | 118 unsigned hclen; local 211 hclen = 15; 213 while (hclen > 0 && clcounts[order[hclen + 4 - 1]] == 0) hclen--; 218 AddBits(hclen, 4, bp, out, outsize); 220 for (i = 0; i < hclen + 4; i++) { 234 result_size += 14; /* hlit, hdist, hclen bits */ 235 result_size += (hclen + 4) * 3; /* clcl bits */
|
/external/u-boot/fs/jffs2/ |
mini_inflate.c | 230 int hclen = pull_bits(stream, 4) + 4; local 241 for (i = 0; i < hclen; i++) {
|