Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hashPrev (0.09 sec)

  1. src/compress/flate/deflate.go

    			d.chainHead -= delta
    
    			// Iterate over slices instead of arrays to avoid copying
    			// the entire table onto the stack (Issue #18625).
    			for i, v := range d.hashPrev[:] {
    				if int(v) > delta {
    					d.hashPrev[i] = uint32(int(v) - delta)
    				} else {
    					d.hashPrev[i] = 0
    				}
    			}
    			for i, v := range d.hashHead[:] {
    				if int(v) > delta {
    					d.hashHead[i] = uint32(int(v) - delta)
    				} else {
    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