Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for machoCompressSection (0.19 sec)

  1. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			newSec.Size = uint64(len(contents))
    		}
    		sects = append(sects, &newSec)
    		buf.Write(contents)
    	}
    	return sects, buf.Bytes(), nil
    }
    
    // machoCompressSection compresses secBytes if it results in less data.
    func machoCompressSection(sectBytes []byte) (compressed bool, contents []byte, err error) {
    	var buf bytes.Buffer
    	buf.WriteString("ZLIB")
    	var sizeBytes [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top