compress/bzip2.bitReader.ReadBits (method)
15 uses
compress/bzip2 (current package)
bit_reader.go#L70: func (br *bitReader) ReadBits(bits uint) (n int) {
bit_reader.go#L76: n := br.ReadBits(1)
bzip2.go#L61: magic := br.ReadBits(16)
bzip2.go#L67: t := br.ReadBits(8)
bzip2.go#L72: level := br.ReadBits(8)
bzip2.go#L205: br.ReadBits(br.bits % 8)
bzip2.go#L241: randomized := br.ReadBits(1)
bzip2.go#L245: origPtr := uint(br.ReadBits(24))
bzip2.go#L250: symbolRangeUsedBitmap := br.ReadBits(16)
bzip2.go#L255: bits := br.ReadBits(16)
bzip2.go#L271: numHuffmanTrees := br.ReadBits(3)
bzip2.go#L278: numSelectors := br.ReadBits(15)
bzip2.go#L287: inc := br.ReadBits(1)
bzip2.go#L318: length := br.ReadBits(5)
huffman.go#L51: bit = uint16(br.ReadBits(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. |