Home | History | Annotate | Download | only in tests

Lines Matching refs:cftab

797       Int32    cftab[257];
892 cccc = BZ2_indexIntoF ( s->tPos, s->cftab ); \
1495 Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab )
1502 if (indx >= cftab[mid]) nb = mid; else na = mid;
1891 /*-- Set up cftab to facilitate generation of T^(-1) --*/
1892 s->cftab[0] = 0;
1893 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1];
1894 for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1];
1896 if (s->cftab[i] < 0 || s->cftab[i] > nblock) {
1897 /* s->cftab[i] can legitimately be == nblock */
1910 /*-- Make a copy of cftab, used in generation of T --*/
1911 for (i = 0; i <= 256; i++) s->cftabCopy[i] = s->cftab[i];
1946 s->tt[s->cftab[uc]] |= (i << 8);
1947 s->cftab[uc]++;