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

  /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/u-boot/fs/jffs2/
mini_inflate.c 228 int hlit = pull_bits(stream, 5) + 257; local
252 while (curr_code < hlit) {
265 if (curr_code < hlit) {
270 distance->lengths[curr_code - hlit] =
286 curr_code -= hlit;
  /external/tensorflow/tensorflow/core/grappler/graph_analyzer/
sig_node_test.cc 173 auto hlit = hl.begin(); local
174 ASSERT_THAT(hlit, Ne(hl.end()));
175 EXPECT_THAT(hlit->second.unique_hash, Eq(hlit->first));
176 rehashed[hlit->second.tag] = hlit->second;
177 ++hlit;
178 ASSERT_THAT(hlit, Ne(hl.end()));
179 EXPECT_THAT(hlit->second.unique_hash, Eq(hlit->first))
    [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 */
  /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...]
  /external/python/cpython3/Lib/test/test_email/
test_email.py     [all...]

Completed in 1170 milliseconds