Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for replenish (0.08 sec)

  1. src/compress/flate/huffman_code.go

    			if l.level == maxBits {
    				// All done!
    				break
    			}
    			levels[l.level+1].nextPairFreq = prevFreq + l.lastFreq
    			level++
    		} else {
    			// If we stole from below, move down temporarily to replenish it.
    			for levels[level-1].needed > 0 {
    				level--
    			}
    		}
    	}
    
    	// Somethings is wrong if at the end, the top level is null or hasn't used
    	// all of the leaves.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top