Home | History | Annotate | Download | only in perf

Lines Matching refs:cftab

759       Int32    cftab[257];
854 cccc = BZ2_indexIntoF ( s->tPos, s->cftab ); \
1457 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab )
1464 if (indx >= cftab[mid]) nb = mid; else na = mid;
1852 /*-- Set up cftab to facilitate generation of T^(-1) --*/
1853 s->cftab[0] = 0;
1854 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1];
1855 for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1];
1857 if (s->cftab[i] < 0 || s->cftab[i] > nblock) {
1858 /* s->cftab[i] can legitimately be == nblock */
1871 /*-- Make a copy of cftab, used in generation of T --*/
1872 for (i = 0; i <= 256; i++) s->cftabCopy[i] = s->cftab[i];
1907 s->tt[s->cftab[uc]] |= (i << 8);
1908 s->cftab[uc]++;