Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fillWindow (0.07 sec)

  1. src/compress/flate/deflate.go

    		d.w.writeBlock(tokens, false, window)
    		return d.w.err
    	}
    	return nil
    }
    
    // fillWindow will fill the current window with the supplied
    // dictionary and calculate all hashes.
    // This is much faster than doing a full encode.
    // Should only be used after a reset.
    func (d *compressor) fillWindow(b []byte) {
    	// Do not fill window if we are in store-only mode.
    	if d.compressionLevel.level < 2 {
    		return
    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