Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matchLengthBase (0.11 sec)

  1. src/internal/zstd/fse.go

    // that to a baseline. For states 0 to 31 the baseline is state+3 and
    // the number of bits is zero. RFC 3.1.1.3.2.1.1.
    
    const matchLengthOffset = 32
    
    var matchLengthBase = []uint32{
    	35 | (1 << 24),
    	37 | (1 << 24),
    	39 | (1 << 24),
    	41 | (1 << 24),
    	43 | (2 << 24),
    	47 | (2 << 24),
    	51 | (3 << 24),
    	59 | (3 << 24),
    	67 | (4 << 24),
    	83 | (4 << 24),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top