Home
last modified time | relevance | path

Searched refs:cftab (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/common/bzip2/
H A Ddecompress.c501 s->cftab[0] = 0; in BZ2_decompress()
502 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1]; in BZ2_decompress()
503 for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1]; in BZ2_decompress()
506 if (s->cftab[i] < 0 || s->cftab[i] > nblock) { in BZ2_decompress()
513 if (s->cftab[i-1] > s->cftab[i]) { in BZ2_decompress()
527 for (i = 0; i <= 256; i++) s->cftabCopy[i] = s->cftab[i]; in BZ2_decompress()
562 s->tt[s->cftab[uc]] |= (i << 8); in BZ2_decompress()
563 s->cftab[uc]++; in BZ2_decompress()
H A DSolaris.README.txt597 if (s->cftab[i] < 0 || s->cftab[i] > nblock) {
598 /* s->cftab[i] can legitimately be == nblock */
603 /* Check: cftab entries non-descending. */
605 if (s->cftab[i-1] > s->cftab[i]) {
H A Dbzlib_private.h382 Int32 cftab[257]; member
483 cccc = BZ2_indexIntoF ( s->tPos, s->cftab ); \
H A Dbzlib.c849 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab ) in BZ2_indexIntoF() argument
856 if (indx >= cftab[mid]) nb = mid; else na = mid; in BZ2_indexIntoF()