Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compressedSects (0.12 sec)

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

    	nsect := seg.Nsect
    	if nsect == 0 {
    		return nil
    	}
    	sectOffset := int64(unsafe.Sizeof(*seg))
    
    	var sect macho.Section64
    	sectSize := int64(unsafe.Sizeof(sect))
    	for i := uint32(0); i < nsect; i++ {
    		if err := r.ReadAt(sectOffset, &sect); err != nil {
    			return err
    		}
    		if compressedSects != nil {
    			cSect := compressedSects[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		return
    	}
    
    	var compressedCount int
    	resChannel := make(chan compressedSect)
    	for i := range dwarfp {
    		go func(resIndex int, syms []loader.Sym) {
    			resChannel <- compressedSect{resIndex, compressSyms(ctxt, syms), syms}
    		}(compressedCount, dwarfp[i].syms)
    		compressedCount++
    	}
    	res := make([]compressedSect, compressedCount)
    	for ; compressedCount > 0; compressedCount-- {
    		r := <-resChannel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top