Home | History | Annotate | Download | only in zopfli

Lines Matching defs:litlens

101 litlens: lz77 lit/lengths
106 static double EstimateCost(const unsigned short* litlens,
109 return ZopfliCalculateBlockSize(litlens, dists, lstart, lend, 2);
113 const unsigned short* litlens;
128 return EstimateCost(c->litlens, c->dists, c->start, i) +
129 EstimateCost(c->litlens, c->dists, i, c->end);
152 static void PrintBlockSplitPoints(const unsigned short* litlens,
164 size_t length = dists[i] == 0 ? 1 : litlens[i];
221 const unsigned short* litlens,
247 c.litlens = litlens;
258 splitcost = EstimateCost(litlens, dists, lstart, llpos) +
259 EstimateCost(litlens, dists, llpos, lend);
260 origcost = EstimateCost(litlens, dists, lstart, lend);
280 PrintBlockSplitPoints(litlens, dists, llsize, *splitpoints, *npoints);
313 store.litlens, store.dists, store.size, maxblocks,
320 size_t length = store.dists[i] == 0 ? 1 : store.litlens[i];