Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CompressedSize (0.64 sec)

  1. src/internal/zstd/literals.go

    	var (
    		regeneratedSize int
    		compressedSize  int
    		streams         int
    	)
    	switch (hdr >> 2) & 3 {
    	case 0, 1:
    		if off+1 >= len(data) {
    			return 0, nil, r.makeEOFError(off)
    		}
    		regeneratedSize = (int(hdr) >> 4) | ((int(data[off]) & 0x3f) << 4)
    		compressedSize = (int(data[off]) >> 6) | (int(data[off+1]) << 2)
    		off += 2
    		if ((hdr >> 2) & 3) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top