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

/freebsd-11.0-release/contrib/bzip2/
H A Ddecompress.c494 /*-- Set up cftab to facilitate generation of T^(-1) --*/
500 /* Actually generate cftab. */
501 s->cftab[0] = 0;
502 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1];
503 for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1];
504 /* Check: cftab entries in range. */
506 if (s->cftab[i] < 0 || s->cftab[i] > nblock) {
507 /* s->cftab[
[all...]
H A Dbzlib_private.h377 Int32 cftab[257]; member in struct:__anon850
478 cccc = BZ2_indexIntoF ( s->tPos, s->cftab ); \
H A Dbzlib.c694 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab )
701 if (indx >= cftab[mid]) nb = mid; else na = mid;

Completed in 63 milliseconds