Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fillDeflate (0.14 sec)

  1. src/compress/flate/deflate.go

    	offset         int
    	maxInsertIndex int
    	err            error
    
    	// hashMatch must be able to contain hashes for the maximum match length.
    	hashMatch [maxMatchLength - 1]uint32
    }
    
    func (d *compressor) fillDeflate(b []byte) int {
    	if d.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
    		// shift the window by windowSize
    		copy(d.window, d.window[windowSize:2*windowSize])
    		d.index -= windowSize
    		d.windowEnd -= windowSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top