Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test5603 (0.12 sec)

  1. src/cmd/cgo/internal/test/cgo_test.go

    func Test5603(t *testing.T)                  { test5603(t) }
    func Test5986(t *testing.T)                  { test5986(t) }
    func Test6390(t *testing.T)                  { test6390(t) }
    func Test6833(t *testing.T)                  { test6833(t) }
    func Test6907(t *testing.T)                  { test6907(t) }
    func Test6907Go(t *testing.T)                { test6907Go(t) }
    func Test7560(t *testing.T)                  { test7560(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    	return C.SansTypeface
    }
    
    // issue 5242
    
    func test5242(t *testing.T) {
    	if got := C.issue5242(C.foo{}, C.bar{}); got != 5242 {
    		t.Errorf("got %v", got)
    	}
    }
    
    func test5603(t *testing.T) {
    	var x [5]int64
    	exp := int64(C.issue5603exp)
    	x[0] = int64(C.issue5603foo0())
    	x[1] = int64(C.issue5603foo1(nil))
    	x[2] = int64(C.issue5603foo2(nil, nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/testx.go

    }
    
    func Issue1560FromGo() {
    	atomic.AddInt32(&issue1560, 1)
    	for atomic.LoadInt32(&issue1560) != 2 {
    		runtime.Gosched()
    	}
    	atomic.AddInt32(&issue1560, 1)
    	issue1560Ch <- true
    }
    
    func test1560(t *testing.T) {
    	go Issue1560FromGo()
    	go C.Issue1560InC()
    	<-issue1560Ch
    	<-issue1560Ch
    }
    
    // issue 2462
    
    //export exportbyte
    func exportbyte() byte {
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top