/external/zopfli/src/zopflipng/lodepng/ |
lodepng_util.h | 128 int hlit; //the HLIT value that was filled in for this tree member in struct:lodepng::ZlibBlockInfo
|
lodepng_util.cpp | 414 size_t HLIT = readBitsFromStream(bp, in, 5) + 257; //number of literal/length codes + 257 417 zlibinfo->back().hlit = HLIT - 257; 426 while(i < HLIT + HDIST) 430 if(code <= 15) { if(i < HLIT) bitlen[i++] = code; else bitlenD[i++ - HLIT] = code; } //a length code 436 if((i - 1) < HLIT) value = bitlen[i - 1]; 437 else value = bitlenD[i - HLIT - 1]; 440 if(i >= HLIT + HDIST) { error = 13; return; } //error: i is larger than the amount of codes 441 if(i < HLIT) bitlen[i++] = value; else bitlenD[i++ - HLIT] = value [all...] |
/external/libvncserver/webclients/novnc/include/ |
jsunzip.js | 409 var hlit, hdist, hclen; 412 /* get 5 bits HLIT (257-286) */ 413 hlit = this.read_bits(d, 5, 257); 436 for (num = 0; num < hlit + hdist; ) 474 this.build_tree(lt, lengths, 0, hlit); 475 this.build_tree(dt, lengths, hlit, hdist);
|
/external/zopfli/src/zopfli/ |
deflate.c | 116 unsigned hlit = 29; /* 286 - 257 */ local 134 while (hlit > 0 && ll_lengths[257 + hlit - 1] == 0) hlit--; 136 hlit2 = hlit + 257; 216 AddBits(hlit, 5, bp, out, outsize); 234 result_size += 14; /* hlit, hdist, hclen bits */
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/ |
test_email.py | [all...] |
test_email_renamed.py | [all...] |
/external/python/cpython2/Lib/email/test/ |
test_email.py | [all...] |
test_email_renamed.py | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/email/test/ |
test_email.py | [all...] |
test_email_renamed.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/email/test/ |
test_email.py | [all...] |
test_email_renamed.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email.py | [all...] |
test_email_renamed.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email.py | [all...] |
test_email_renamed.py | [all...] |