HomeSort by relevance Sort by last modified time
    Searched full:hlit (Results 1 - 10 of 10) sorted by null

  /external/zopfli/src/zopflipng/lodepng/
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...]
lodepng_util.h 128 int hlit; //the HLIT value that was filled in for this tree member in struct:lodepng::ZlibBlockInfo
lodepng.cpp 943 unsigned n, HLIT, HDIST, HCLEN, i;
956 HLIT = readBitsFromStream(bp, in, 5) + 257;
    [all...]
  /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 */
  /external/zlib/src/doc/
rfc1951.txt 736 5 Bits: HLIT, # of Literal/Length codes - 257 (257 - 286)
757 HLIT + 257 code lengths for the literal/length alphabet,
770 The code length repeat codes can cross from HLIT + 257 to the
772 a single sequence of HLIT + HDIST + 258 values.
    [all...]
  /frameworks/av/media/libstagefright/timedtext/
TextDescriptions.cpp 170 // 'hlit' box specifies highlighted text
  /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...]

Completed in 756 milliseconds