Searched refs:bitlen_lld_e (Results 1 - 1 of 1) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp1697 uivector bitlen_lld_e; /*bitlen_lld encoded with repeat codes (this is a rudemtary run length compression)*/ local
1707 bitlen_lld_e is to bitlen_lld what lz77_encoded is to data.
1708 bitlen_cl is to bitlen_lld_e what bitlen_lld is to lz77_encoded.
1723 uivector_init(&bitlen_lld_e);
1772 /*run-length compress bitlen_ldd into bitlen_lld_e by using repeat codes 16 (copy length 3-6 times),
1784 uivector_push_back(&bitlen_lld_e, 17);
1785 uivector_push_back(&bitlen_lld_e, j - 3);
1790 uivector_push_back(&bitlen_lld_e, 18);
1791 uivector_push_back(&bitlen_lld_e, j - 11);
1799 uivector_push_back(&bitlen_lld_e, bitlen_ll
[all...]

Completed in 55 milliseconds