Home
last modified time | relevance | path

Searched refs:hlit (Results 1 – 25 of 343) sorted by relevance

12345678910>>...14

/dports/lang/micropython/micropython-1.17/lib/uzlib/
H A Dtinflate.c310 unsigned int hlit, hdist, hclen, hlimit; in tinf_decode_trees() local
314 hlit = tinf_read_bits(d, 5, 257); in tinf_decode_trees()
337 hlimit = hlit + hdist; in tinf_decode_trees()
381 printf("lit code lengths (%d):", hlit); in tinf_decode_trees()
382 UZLIB_DUMP_ARRAY("", lengths, hlit); in tinf_decode_trees()
384 UZLIB_DUMP_ARRAY("", lengths + hlit, hdist); in tinf_decode_trees()
395 tinf_build_tree(lt, lengths, hlit); in tinf_decode_trees()
396 tinf_build_tree(dt, lengths + hlit, hdist); in tinf_decode_trees()
/dports/games/OpenLara/OpenLara-b4b19f2/src/libs/tinf/
H A Dtinflate.c220 unsigned int hlit, hdist, hclen; in tinf_decode_trees() local
224 hlit = tinf_read_bits(d, 5, 257); in tinf_decode_trees()
247 for (num = 0; num < hlit + hdist; ) in tinf_decode_trees()
285 tinf_build_tree(lt, lengths, hlit); in tinf_decode_trees()
286 tinf_build_tree(dt, lengths + hlit, hdist); in tinf_decode_trees()
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/codec/
H A Ddeflate.cpp438 uint32_t hlit, hdist, hclen; in _decode() local
440 BL_DEFLATE_READ_BITS(hlit , 5); in _decode()
444 hlit += 257; in _decode()
469 while (n < hlit + hdist) { in _decode()
507 if (n != hlit + hdist) in _decode()
510 BL_DEFLATE_PROPAGATE(blDeflateBuildTable(&_zSize, bufCodes , hlit)); in _decode()
511 BL_DEFLATE_PROPAGATE(blDeflateBuildTable(&_zDist, bufCodes + hlit, hdist)); in _decode()
/dports/sysutils/daa2iso/src/
H A Dtinflate.c229 unsigned int hlit, hdist, hclen; in tinf_decode_trees() local
233 hlit = tinf_read_bits(d, 5, 257); in tinf_decode_trees()
256 for (num = 0; num < hlit + hdist; ) in tinf_decode_trees()
301 tinf_build_tree(lt, lengths, hlit); in tinf_decode_trees()
302 tinf_build_tree(dt, lengths + hlit, hdist); in tinf_decode_trees()
/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dmovtextenc.c83 HighlightBox hlit; member
140 bytestream_put_be16(&p, s->hlit.start); in encode_hlit()
141 bytestream_put_be16(&p, s->hlit.end); in encode_hlit()
447 if (!(s->box_flags & HLIT_BOX) || s->hlit.start == s->text_pos) { in mov_text_color_cb()
450 s->hlit.start = s->text_pos; in mov_text_color_cb()
454 s->hlit.end = s->text_pos; in mov_text_color_cb()
485 if (!(s->box_flags & HLIT_BOX) || s->hlit.start == s->text_pos) { in mov_text_alpha_cb()
488 s->hlit.start = s->text_pos; in mov_text_alpha_cb()
492 s->hlit.end = s->text_pos; in mov_text_alpha_cb()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dmovtextenc.c83 HighlightBox hlit; member
140 bytestream_put_be16(&p, s->hlit.start); in encode_hlit()
141 bytestream_put_be16(&p, s->hlit.end); in encode_hlit()
447 if (!(s->box_flags & HLIT_BOX) || s->hlit.start == s->text_pos) { in mov_text_color_cb()
450 s->hlit.start = s->text_pos; in mov_text_color_cb()
454 s->hlit.end = s->text_pos; in mov_text_color_cb()
485 if (!(s->box_flags & HLIT_BOX) || s->hlit.start == s->text_pos) { in mov_text_alpha_cb()
488 s->hlit.start = s->text_pos; in mov_text_alpha_cb()
492 s->hlit.end = s->text_pos; in mov_text_alpha_cb()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cryptopp/
H A Dzinflate.cpp399 unsigned int hlit = m_reader.GetBits(5); in DecodeHeader() local
414 for (i = 0; i < hlit+257+hdist+1; ) in DecodeHeader()
448 if (i + count > hlit+257+hdist+1) in DecodeHeader()
453 m_dynamicLiteralDecoder.Initialize(codeLengths, hlit+257); in DecodeHeader()
454 if (hdist == 0 && codeLengths[hlit+257] == 0) in DecodeHeader()
456 if (hlit != 0) // a single zero distance code length means all literals in DecodeHeader()
460 m_dynamicDistanceDecoder.Initialize(codeLengths+hlit+257, hdist+1); in DecodeHeader()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot-sam460ex/fs/jffs2/
H A Dmini_inflate.c244 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
268 while (curr_code < hlit) { in decompress_dynamic()
281 if (curr_code < hlit) { in decompress_dynamic()
286 distance->lengths[curr_code - hlit] = in decompress_dynamic()
302 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot-sam460ex/fs/jffs2/
H A Dmini_inflate.c244 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
268 while (curr_code < hlit) { in decompress_dynamic()
281 if (curr_code < hlit) { in decompress_dynamic()
286 distance->lengths[curr_code - hlit] = in decompress_dynamic()
302 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-nanopi-neo2/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-chip/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/u-boot-sam460ex/fs/jffs2/
H A Dmini_inflate.c244 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
268 while (curr_code < hlit) { in decompress_dynamic()
281 if (curr_code < hlit) { in decompress_dynamic()
286 distance->lengths[curr_code - hlit] = in decompress_dynamic()
302 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-a13-olinuxino/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-sopine/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-a64-olinuxino/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-rpi/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/sysutils/u-boot-qemu-arm64/u-boot-2021.07/fs/jffs2/
H A Dmini_inflate.c228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
252 while (curr_code < hlit) { in decompress_dynamic()
265 if (curr_code < hlit) { in decompress_dynamic()
270 distance->lengths[curr_code - hlit] = in decompress_dynamic()
286 curr_code -= hlit; in decompress_dynamic()
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot-sam460ex/fs/jffs2/
H A Dmini_inflate.c244 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic() local
268 while (curr_code < hlit) { in decompress_dynamic()
281 if (curr_code < hlit) { in decompress_dynamic()
286 distance->lengths[curr_code - hlit] = in decompress_dynamic()
302 curr_code -= hlit; in decompress_dynamic()

12345678910>>...14