Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Indirect (0.23 sec)

  1. src/cmd/api/testdata/src/issue21181/p/p_generic.go

    //go:build !amd64
    // +build !amd64
    
    package p
    
    import (
    	"indirect"
    )
    
    var in = []algo{
    	{indirect.F},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Dec 13 18:45:54 GMT 2021
    - 105 bytes
    - Viewed (0)
  2. src/cmd/api/testdata/src/issue21181/indirect/p.go

    package indirect
    
    import "dep"
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 05 17:53:43 GMT 2018
    - 57 bytes
    - Viewed (0)
  3. src/cmd/api/testdata/src/issue21181/p/p_amd64.go

    package p
    
    import "indirect"
    
    var in = []algo{
    	{indirect.F},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 05 17:53:43 GMT 2018
    - 64 bytes
    - Viewed (0)
  4. api/go1.5.txt

    pkg go/types, method (*Scope) String() string
    pkg go/types, method (*Scope) WriteTo(io.Writer, int, bool)
    pkg go/types, method (*Selection) Index() []int
    pkg go/types, method (*Selection) Indirect() bool
    pkg go/types, method (*Selection) Kind() SelectionKind
    pkg go/types, method (*Selection) Obj() Object
    pkg go/types, method (*Selection) Recv() Type
    pkg go/types, method (*Selection) String() string
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  5. LICENSE

    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jun 01 22:40:04 GMT 2016
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    func (p *Parser) registerIndirect(a *obj.Addr, prefix rune) {
    	p.get('(')
    	tok := p.next()
    	name := tok.String()
    	r1, r2, scale, ok := p.register(name, 0)
    	if !ok {
    		p.errorf("indirect through non-register %s", tok)
    	}
    	p.get(')')
    	a.Type = obj.TYPE_MEM
    	if r1 < 0 {
    		// Pseudo-register reference.
    		if r2 != 0 {
    			p.errorf("cannot use pseudo-register in pair")
    			return
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  7. doc/asm.html

    <code>cmd/internal/obj/x86/a.out.go</code>.
    </p>
    
    <p>
    The architectures share syntax for common addressing modes such as
    <code>(R1)</code> (register indirect),
    <code>4(R1)</code> (register indirect with offset), and
    <code>$foo(SB)</code> (absolute address).
    The assembler also supports some (not necessarily all) addressing modes
    specific to each architecture.
    The sections below list these.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    they might depend on (in the case of puts, stdio). cmd/link has been
    extended to understand basic ELF files, but it does not understand ELF
    in the full complexity that modern C libraries embrace, so it cannot
    in general generate direct references to the system libraries.
    
    Instead, the build process generates an object file using dynamic
    linkage to the desired libraries. The main function is provided by
    _cgo_main.c:
    
    	int main() { return 0; }
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  9. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const RTM_OOIFINFO = 14
    pkg syscall (netbsd-arm64-cgo), const RTM_OOIFINFO ideal-int
    pkg syscall (netbsd-arm64-cgo), const RTM_REDIRECT = 6
    pkg syscall (netbsd-arm64-cgo), const RTM_REDIRECT ideal-int
    pkg syscall (netbsd-arm64-cgo), const RTM_RESOLVE = 11
    pkg syscall (netbsd-arm64-cgo), const RTM_RESOLVE ideal-int
    pkg syscall (netbsd-arm64-cgo), const RTM_RTTUNIT = 1000000
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    <pre>
    (*T).Mv
    </pre>
    
    <p>
    yields a function value representing <code>Mv</code> with signature
    </p>
    
    <pre>
    func(tv *T, a int) int
    </pre>
    
    <p>
    Such a function indirects through the receiver to create a value
    to pass as the receiver to the underlying method;
    the method does not overwrite the value whose address is passed in
    the function call.
    </p>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
Back to top