compress/bzip2.bitReader.bits (field)
10 uses
compress/bzip2 (current package)
bit_reader.go#L19: bits uint
bit_reader.go#L37: for bits > br.bits {
bit_reader.go#L48: br.bits += 8
bit_reader.go#L65: n = (br.n >> (br.bits - bits)) & ((1 << bits) - 1)
bit_reader.go#L66: br.bits -= bits
bzip2.go#L204: if br.bits%8 != 0 {
bzip2.go#L205: br.ReadBits(br.bits % 8)
huffman.go#L43: if br.bits > 0 {
huffman.go#L45: br.bits--
huffman.go#L46: bit = uint16(br.n>>(br.bits&63)) & 1
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |