Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for extraOffsetBits (0.1 sec)

  1. src/compress/flate/huffman_bit_writer.go

    		}
    		// Write the offset
    		offset := t.offset()
    		offsetCode := offsetCode(offset)
    		w.writeCode(oeCodes[offsetCode])
    		extraOffsetBits := uint(offsetExtraBits[offsetCode])
    		if extraOffsetBits > 0 {
    			extraOffset := int32(offset - offsetBase[offsetCode])
    			w.writeBits(extraOffset, extraOffsetBits)
    		}
    	}
    }
    
    // huffOffset is a static offset encoder used for huffman only encoding.
    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