| /src/external/zlib/pigz/dist/zopfli/ |
| lz77.h | 36 litlens: Contains the literal symbols or length values. 38 litlens contains a literal instead of a length. 39 litlens and dists both have the same size. 42 unsigned short* litlens; /* Lit or len. */ member in struct:ZopfliLZ77Store 43 unsigned short* dists; /* If 0: indicates literal in corresponding litlens, 44 if > 0: length in corresponding litlens, this is the distance. */ 102 litlens: lz77 lit/lengths 104 start: where to begin counting in litlens and dists 105 end: where to stop counting in litlens and dists (not inclusive) 110 void ZopfliLZ77Counts(const unsigned short* litlens, [all...] |
| blocksplitter.c | 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; member in struct:SplitCostContext 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 [all...] |
| squeeze.c | 33 size_t litlens[288]; member in struct:SymbolStats 43 memset(stats->litlens, 0, 288 * sizeof(stats->litlens[0])); 51 memcpy(dest->litlens, source->litlens, 288 * sizeof(dest->litlens[0])); 65 result->litlens[i] = 66 (size_t) (stats1->litlens[i] * w1 + stats2->litlens[i] * w2); 72 result->litlens[256] = 1; /* End symbol. * [all...] |