Home | History | Annotate | Download | only in bzip2

Lines Matching full:uint32

26 	fileCRC      uint32
27 blockCRC uint32
28 wantBlockCRC uint32
34 tt []uint32 // mirrors the `tt' array in the bzip2 source and contains the P array in the upper 24 bits.
35 tPos uint32 // Index of the next output byte in tt.
37 preRLE []uint32 // contains the RLE data still to be processed.
81 bz2.tt = make([]uint32, bz2.blockSize)
193 wantFileCRC := uint32(br.ReadBits64(32))
239 bz2.wantBlockCRC = uint32(br.ReadBits64(32)) // skip checksum. TODO: check it if we can figure out what it is.
404 bz2.tt[bufIndex] = uint32(b)
428 bz2.tt[bufIndex] = uint32(b)
459 func inverseBWT(tt []uint32, origPtr uint, c []uint) uint32 {
468 tt[c[b]] |= uint32(i) << 8
478 var crctab [256]uint32
483 crc := uint32(i) << 24
497 func updateCRC(val uint32, b []byte) uint32 {