Home
last modified time | relevance | path

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

/openbmc/u-boot/lib/bzip2/
H A Dbzlib_decompress.c543 s->cftab[0] = 0; in BZ2_decompress()
544 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1]; in BZ2_decompress()
545 for (i = 1; i <= 256; i++) s->cftab[i] += s->cftab[i-1]; in BZ2_decompress()
550 for (i = 0; i <= 256; i++) s->cftabCopy[i] = s->cftab[i]; in BZ2_decompress()
591 s->tt[s->cftab[uc]] |= (i << 8); in BZ2_decompress()
592 s->cftab[uc]++; in BZ2_decompress()
H A Dbzlib_private.h405 Int32 cftab[257]; member
499 cccc = BZ2_indexIntoF ( s->tPos, s->cftab ); \
H A Dbzlib.c725 __inline__ Int32 BZ2_indexIntoF ( Int32 indx, Int32 *cftab ) in BZ2_indexIntoF() argument
732 if (indx >= cftab[mid]) nb = mid; else na = mid; in BZ2_indexIntoF()