Searched defs:dictDecoder (Results 1 – 1 of 1) sorted by relevance
27 type dictDecoder struct { struct28 hist []byte // Sliding window history31 wrPos int // Current output position in buffer32 rdPos int // Have emitted hist[:rdPos] already33 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 …]