Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decodetypeFuncInCount (0.26 sec)

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

    }
    
    // Type.FuncType.dotdotdot
    func decodetypeFuncDotdotdot(arch *sys.Arch, p []byte) bool {
    	return uint16(decodeInuxi(arch, p[commonsize(arch)+2:], 2))&(1<<15) != 0
    }
    
    // Type.FuncType.inCount
    func decodetypeFuncInCount(arch *sys.Arch, p []byte) int {
    	return int(decodeInuxi(arch, p[commonsize(arch):], 2))
    }
    
    func decodetypeFuncOutCount(arch *sys.Arch, p []byte) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		typedefdie = d.dotypedef(&dwtypes, name, die)
    		data := d.ldr.Data(gotype)
    		// FIXME: add caching or reuse reloc slice.
    		relocs := d.ldr.Relocs(gotype)
    		nfields := decodetypeFuncInCount(d.arch, data)
    		for i := 0; i < nfields; i++ {
    			s := decodetypeFuncInType(d.ldr, d.arch, gotype, &relocs, i)
    			sn := d.ldr.SymName(s)
    			fld := d.newdie(die, dwarf.DW_ABRV_FUNCTYPEPARAM, sn[5:])
    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