Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for accept (0.51 sec)

  1. src/cmd/internal/obj/util.go

    func (ctxt *Link) CanReuseProgs() bool {
    	return ctxt.Debugasm == 0
    }
    
    // Dconv accepts an argument 'a' within a prog 'p' and returns a string
    // with a formatted version of the argument.
    func Dconv(p *Prog, a *Addr) string {
    	buf := new(bytes.Buffer)
    	writeDconv(buf, p, a, false)
    	return buf.String()
    }
    
    // DconvWithABIDetail accepts an argument 'a' within a prog 'p'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top