Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for composed (0.12 sec)

  1. src/cmd/link/internal/loader/loader.go

    	}
    	if v {
    		l.attrDuplicateOK.Set(l.extIndex(i))
    	} else {
    		l.attrDuplicateOK.Unset(l.extIndex(i))
    	}
    }
    
    // AttrShared returns true for symbols compiled with the -shared option.
    func (l *Loader) AttrShared(i Sym) bool {
    	if !l.IsExternal(i) {
    		// TODO: if this path winds up being taken frequently, it
    		// might make more sense to copy the flag value out of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	args := call.Call.Args
    	end := call.Call.End()
    
    	// Avoid a crash if the number of arguments doesn't match
    	// the number of parameters.
    	// This will be caught when the generated file is compiled.
    	if len(args) != len(params) {
    		return "", false
    	}
    
    	any := false
    	for i, param := range params {
    		if p.needsPointerCheck(f, param.Go, args[i]) {
    			any = true
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top