Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,202 for tcCall (0.08 sec)

  1. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.2.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package QUOTE
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHELLO(t *testing.T) {
    	hello := "HELLO, WORLD"
    	if out := HELLO(); out != hello {
    		t.Errorf("HELLO() = %q, want %q", out, hello)
    	}
    }
    
    func TestGLASS(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package QUOTE
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHELLO(t *testing.T) {
    	hello := "HELLO, WORLD"
    	if out := HELLO(); out != hello {
    		t.Errorf("HELLO() = %q, want %q", out, hello)
    	}
    }
    
    func TestGLASS(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/tls_mips64x.s

    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only R23 (REGTMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB), R23
    	BEQ	R23, nocgo
    
    	MOVV	R3, R23	// save R3
    	MOVV	g, runtime·tls_g(SB) // TLS relocation clobbers R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 733 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180710144737-5d9f230bcfba.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.3-pre1.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.1.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package quote
    
    import (
    	"os"
    	"testing"
    )
    
    func init() {
    	os.Setenv("LC_ALL", "en")
    }
    
    func TestHello(t *testing.T) {
    	hello := "Hello, world."
    	if out := Hello(); out != hello {
    		t.Errorf("Hello() = %q, want %q", out, hello)
    	}
    }
    
    func TestGlass(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/wasm/ssa.go

    			setReg(s, wasm.REG_CTXT)
    		}
    		if call, ok := v.Aux.(*ssa.AuxCall); ok && call.Fn != nil {
    			sym := call.Fn
    			p := s.Prog(obj.ACALL)
    			p.To = obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: sym}
    			p.Pos = v.Pos
    			if v.Op == ssa.OpWasmLoweredTailCall {
    				p.As = obj.ARET
    			}
    		} else {
    			getValue64(s, v.Args[0])
    			p := s.Prog(obj.ACALL)
    			p.To = obj.Addr{Type: obj.TYPE_NONE}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. test/nosplit.go

    f7 16 call f8
    f8 16 call end
    end 1000
    
    start 0 call f1
    f1 16 nosplit call f2
    f2 16 nosplit call f3
    f3 16 nosplit call f4
    f4 16 nosplit call f5
    f5 16 nosplit call f6
    f6 16 nosplit call f7
    f7 16 nosplit call f8
    f8 16 nosplit call end
    end 1000
    REJECT
    
    # Two paths both go over the stack limit.
    start 0 call f1
    f1 80 nosplit call f2 call f3
    f2 40 nosplit call f4
    f3 96 nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. test/typeparam/issue48042.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type G[T any] interface {
    	g() func()(*T)
    }
    type Foo[T any] struct {
    
    }
    // OCALL
    func (l *Foo[T]) f1() (*T) {
    	return g[T]()()
    }
    // OCALLFUNC
    func (l *Foo[T]) f2() (*T) {
    	var f = g[T]
    	return f()()
    }
    // OCALLMETH
    func (l *Foo[T]) f3() (*T) {
    	return l.g()()
    }
    // OCALLINTER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/tf-legacy-call.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top