Home | History | Annotate | Download | only in zopfli

Lines Matching refs:done

189 llsize: the size of the LL77 data, which is the size of the done array here.
190 done: array indicating which blocks starting at that position are no longer
196 returns 1 if a block was found, 0 if no block found (all are done).
199 size_t llsize, const unsigned char* done,
208 if (!done[start] && end - start > longest) {
227 unsigned char* done;
232 done = (unsigned char*)malloc(llsize);
233 if (!done) exit(-1); /* Allocation failed. */
234 for (i = 0; i < llsize; i++) done[i] = 0;
261 done[lstart] = 1;
268 llsize, done, *splitpoints, *npoints, &lstart, &lend)) {
281 free(done);