Home | History | Annotate | Download | only in tests

Lines Matching refs:cftab

766       Int32    cftab[257];
861 cccc = BZ2_indexIntoF ( s->tPos, s->cftab ); \
1466 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab )
1473 if (indx >= cftab[mid]) nb = mid; else na = mid;
1861 /*-- Set up cftab to facilitate generation of T^(-1) --*/
1862 s->cftab[0] = 0;
1863 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1];
1864 for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1];
1866 if (s->cftab[i] < 0 || s->cftab[i] > nblock) {
1867 /* s->cftab[i] can legitimately be == nblock */
1880 /*-- Make a copy of cftab, used in generation of T --*/
1881 for (i = 0; i <= 256; i++) s->cftabCopy[i] = s->cftab[i];
1916 s->tt[s->cftab[uc]] |= (i << 8);
1917 s->cftab[uc]++;