Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fseScratch (0.18 sec)

  1. src/internal/zstd/huff.go

    	var count int
    	if hdr < 128 {
    		// The table is compressed using an FSE. RFC 4.2.1.2.
    		if len(r.fseScratch) < 1<<6 {
    			r.fseScratch = make([]fseEntry, 1<<6)
    		}
    		fseBits, noff, err := r.readFSE(data, off, 255, 6, r.fseScratch)
    		if err != nil {
    			return 0, 0, err
    		}
    		fseTable := r.fseScratch
    
    		if off+int(hdr) > len(data) {
    			return 0, 0, r.makeEOFError(off)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top