Lines Matching refs:uc

148     UChar uc;  in BZ2_decompress()  local
236 GET_UCHAR(BZ_X_MAGIC_1, uc); in BZ2_decompress()
237 if (uc != BZ_HDR_B) in BZ2_decompress()
240 GET_UCHAR(BZ_X_MAGIC_2, uc); in BZ2_decompress()
241 if (uc != BZ_HDR_Z) in BZ2_decompress()
244 GET_UCHAR(BZ_X_MAGIC_3, uc) in BZ2_decompress()
245 if (uc != BZ_HDR_h) in BZ2_decompress()
265 GET_UCHAR(BZ_X_BLKHDR_1, uc); in BZ2_decompress()
267 if (uc == 0x17) in BZ2_decompress()
269 if (uc != 0x31) in BZ2_decompress()
271 GET_UCHAR(BZ_X_BLKHDR_2, uc); in BZ2_decompress()
272 if (uc != 0x41) in BZ2_decompress()
274 GET_UCHAR(BZ_X_BLKHDR_3, uc); in BZ2_decompress()
275 if (uc != 0x59) in BZ2_decompress()
277 GET_UCHAR(BZ_X_BLKHDR_4, uc); in BZ2_decompress()
278 if (uc != 0x26) in BZ2_decompress()
280 GET_UCHAR(BZ_X_BLKHDR_5, uc); in BZ2_decompress()
281 if (uc != 0x53) in BZ2_decompress()
283 GET_UCHAR(BZ_X_BLKHDR_6, uc); in BZ2_decompress()
284 if (uc != 0x59) in BZ2_decompress()
292 GET_UCHAR(BZ_X_BCRC_1, uc); in BZ2_decompress()
293 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
294 GET_UCHAR(BZ_X_BCRC_2, uc); in BZ2_decompress()
295 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
296 GET_UCHAR(BZ_X_BCRC_3, uc); in BZ2_decompress()
297 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
298 GET_UCHAR(BZ_X_BCRC_4, uc); in BZ2_decompress()
299 s->storedBlockCRC = (s->storedBlockCRC << 8) | ((UInt32)uc); in BZ2_decompress()
304 GET_UCHAR(BZ_X_ORIGPTR_1, uc); in BZ2_decompress()
305 s->origPtr = (s->origPtr << 8) | ((Int32)uc); in BZ2_decompress()
306 GET_UCHAR(BZ_X_ORIGPTR_2, uc); in BZ2_decompress()
307 s->origPtr = (s->origPtr << 8) | ((Int32)uc); in BZ2_decompress()
308 GET_UCHAR(BZ_X_ORIGPTR_3, uc); in BZ2_decompress()
309 s->origPtr = (s->origPtr << 8) | ((Int32)uc); in BZ2_decompress()
318 GET_BIT(BZ_X_MAPPING_1, uc); in BZ2_decompress()
319 if (uc == 1) in BZ2_decompress()
331 GET_BIT(BZ_X_MAPPING_2, uc); in BZ2_decompress()
332 if (uc == 1) in BZ2_decompress()
350 GET_BIT(BZ_X_SELECTOR_3, uc); in BZ2_decompress()
351 if (uc == 0) in BZ2_decompress()
385 GET_BIT(BZ_X_CODING_2, uc); in BZ2_decompress()
386 if (uc == 0) in BZ2_decompress()
388 GET_BIT(BZ_X_CODING_3, uc); in BZ2_decompress()
389 if (uc == 0) in BZ2_decompress()
470 uc = s->seqToUnseq[s->mtfa[s->mtfbase[0]]]; in BZ2_decompress()
471 s->unzftab[uc] += es; in BZ2_decompress()
477 s->ll16[nblock] = (UInt16)uc; in BZ2_decompress()
485 s->tt[nblock] = (UInt32)uc; in BZ2_decompress()
505 uc = s->mtfa[l + nn]; in BZ2_decompress()
518 s->mtfa[l] = uc; in BZ2_decompress()
525 uc = s->mtfa[l]; in BZ2_decompress()
537 s->mtfa[s->mtfbase[0]] = uc; in BZ2_decompress()
552 s->unzftab[s->seqToUnseq[uc]]++; in BZ2_decompress()
554 s->ll16[nblock] = (UInt16)(s->seqToUnseq[uc]); in BZ2_decompress()
556 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]); in BZ2_decompress()
610 uc = (UChar)(s->ll16[i]); in BZ2_decompress()
611 SET_LL(i, s->cftabCopy[uc]); in BZ2_decompress()
612 s->cftabCopy[uc]++; in BZ2_decompress()
642 uc = (UChar)(s->tt[i] & 0xff); in BZ2_decompress()
643 s->tt[s->cftab[uc]] |= (i << 8); in BZ2_decompress()
644 s->cftab[uc]++; in BZ2_decompress()
666 GET_UCHAR(BZ_X_ENDHDR_2, uc); in BZ2_decompress()
667 if (uc != 0x72) in BZ2_decompress()
669 GET_UCHAR(BZ_X_ENDHDR_3, uc); in BZ2_decompress()
670 if (uc != 0x45) in BZ2_decompress()
672 GET_UCHAR(BZ_X_ENDHDR_4, uc); in BZ2_decompress()
673 if (uc != 0x38) in BZ2_decompress()
675 GET_UCHAR(BZ_X_ENDHDR_5, uc); in BZ2_decompress()
676 if (uc != 0x50) in BZ2_decompress()
678 GET_UCHAR(BZ_X_ENDHDR_6, uc); in BZ2_decompress()
679 if (uc != 0x90) in BZ2_decompress()
683 GET_UCHAR(BZ_X_CCRC_1, uc); in BZ2_decompress()
684 s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc); in BZ2_decompress()
685 GET_UCHAR(BZ_X_CCRC_2, uc); in BZ2_decompress()
686 s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc); in BZ2_decompress()
687 GET_UCHAR(BZ_X_CCRC_3, uc); in BZ2_decompress()
688 s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc); in BZ2_decompress()
689 GET_UCHAR(BZ_X_CCRC_4, uc); in BZ2_decompress()
690 s->storedCombinedCRC = (s->storedCombinedCRC << 8) | ((UInt32)uc); in BZ2_decompress()