Home
last modified time | relevance | path

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

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/bzip2/
DBZip2CompressorInputStream.java584 final int[] unzftab = dataShadow.unzftab;
601 unzftab[i] = 0;
657 unzftab[ch & 0xff] += s + 1;
676 unzftab[seqToUnseq[tmp] & 0xff]++;
751 System.arraycopy(this.data.unzftab, 0, cftab, 1, 256);
906 final int[] unzftab = new int[256]; // 1024 byte
/external/bzip2/
Ddecompress.c357 for (i = 0; i <= 255; i++) s->unzftab[i] = 0; in BZ2_decompress()
401 s->unzftab[uc] += es; in BZ2_decompress()
478 s->unzftab[s->seqToUnseq[uc]]++; in BZ2_decompress()
498 if (s->unzftab[i] < 0 || s->unzftab[i] > nblock) in BZ2_decompress()
503 for (i = 1; i <= 256; i++) s->cftab[i] = s->unzftab[i-1]; in BZ2_decompress()
Dbzlib_private.h375 Int32 unzftab[256]; member