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

/netbsd-current/external/zlib/pigz/dist/zopfli/
H A Ddeflate.c111 unsigned* lld_lengths = 0; /* All litlen and dist lengthts with ending zeros local
113 unsigned lld_total; /* Size of lld_lengths. */
136 lld_lengths = (unsigned*)malloc(sizeof(*lld_lengths) * lld_total);
137 if (!lld_lengths) exit(-1); /* Allocation failed. */
140 lld_lengths[i] = i < 257 + hlit
142 assert(lld_lengths[i] < 16);
147 for (j = i; j < lld_total && lld_lengths[i] == lld_lengths[j]; j++) {
150 if (count >= 4 || (count >= 3 && lld_lengths[
[all...]

Completed in 141 milliseconds