Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for storedSize (0.15 sec)

  1. src/compress/flate/huffman_bit_writer.go

    		fixedLiteralEncoding.bitLength(w.literalFreq) +
    		fixedOffsetEncoding.bitLength(w.offsetFreq) +
    		extraBits
    }
    
    // storedSize calculates the stored size, including header.
    // The function returns the size in bits and whether the block
    // fits inside a single block.
    func (w *huffmanBitWriter) storedSize(in []byte) (int, bool) {
    	if in == nil {
    		return 0, false
    	}
    	if len(in) <= maxStoreBlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
Back to top