Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ChainCount (0.13 sec)

  1. src/compress/flate/deflate.go

    		}
    	}
    	// Update window information.
    	d.windowEnd = n
    	d.index = n
    }
    
    // Try to find a match starting at index whose length is greater than prevSize.
    // We only look at chainCount possibilities before giving up.
    func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
    	minMatchLook := maxMatchLength
    	if lookahead < minMatchLook {
    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