Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Filelen (2.43 sec)

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

    			}
    		}
    		if seg != &Segdata {
    			// Link.address already set Segdata.Filelen to
    			// account for BSS.
    			seg.Filelen = seg.Length
    		}
    		prev = seg
    	}
    	return prev.Fileoff + prev.Filelen
    }
    
    // add a trampoline with symbol s (to be laid down after the current function)
    func (ctxt *Link) AddTramp(s *loader.SymbolBuilder) {
    	s.SetType(sym.STEXT)
    	s.SetReachable(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. doc/go1.17_spec.html

    </p>
    <pre>
    func Greeting(prefix string, who ...string)
    Greeting("nobody")
    Greeting("hello:", "Joe", "Anna", "Eileen")
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the value
    <code>nil</code> in the first call, and
    <code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
    </p>
    
    <p>
    If the final argument is assignable to a slice type <code>[]T</code> and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top