Home
last modified time | relevance | path

Searched defs:dictDecoder (Results 1 – 1 of 1) sorted by relevance

/prebuilts/go/linux-x86/src/compress/flate/
Ddict_decoder.go27 type dictDecoder struct { struct
28 hist []byte // Sliding window history
31 wrPos int // Current output position in buffer
32 rdPos int // Have emitted hist[:rdPos] already
33 full bool // Has a full window length been written yet?
39 func (dd *dictDecoder) init(size int, dict []byte) {
59 func (dd *dictDecoder) histSize() int {
67 func (dd *dictDecoder) availRead() int {
72 func (dd *dictDecoder) availWrite() int {
79 func (dd *dictDecoder) writeSlice() []byte {
[all …]