Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for f42 (2.02 sec)

  1. test/fixedbugs/issue6889.go

    	f31 = f30 * 31
    	f32 = f31 * 32
    	f33 = f32 * 33
    	f34 = f33 * 34
    	f35 = f34 * 35
    	f36 = f35 * 36
    	f37 = f36 * 37
    	f38 = f37 * 38
    	f39 = f38 * 39
    	f40 = f39 * 40
    	f41 = f40 * 41
    	f42 = f41 * 42
    	f43 = f42 * 43
    	f44 = f43 * 44
    	f45 = f44 * 45
    	f46 = f45 * 46
    	f47 = f46 * 47
    	f48 = f47 * 48
    	f49 = f48 * 49
    	f50 = f49 * 50
    	f51 = f50 * 51
    	f52 = f51 * 52
    	f53 = f52 * 53
    	f54 = f53 * 54
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/ptr_test.go

    		fail:    false,
    	},
    	{
    		name:    "slicedata",
    		c:       `void f42(void* p) {}`,
    		imports: []string{"unsafe"},
    		body:    `s := []*byte{nil, new(byte)}; C.f42(unsafe.Pointer(unsafe.SliceData(s)))`,
    		fail:    true,
    	},
    	{
    		name:    "slicedata2",
    		c:       `void f43(void* p) {}`,
    		imports: []string{"unsafe"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. test/live.go

    	r = p
    	defer func() {
    		recover()
    	}()
    	printint(0) // ERROR "live at call to printint: .autotmp_[0-9]+ q r$"
    	r = q
    	return // ERROR "live at call to f41.func1: .autotmp_[0-9]+ r$"
    }
    
    func f42() {
    	var p, q, r int
    	f43([]*int{&p, &q, &r}) // ERROR "stack object .autotmp_[0-9]+ \[3\]\*int$"
    	f43([]*int{&p, &r, &q})
    	f43([]*int{&q, &p, &r})
    }
    
    //go:noescape
    func f43(a []*int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. test/live_regabi.go

    	r = p
    	defer func() {
    		recover()
    	}()
    	printint(0) // ERROR "live at call to printint: .autotmp_[0-9]+ q r$"
    	r = q
    	return // ERROR "live at call to f41.func1: .autotmp_[0-9]+ r$"
    }
    
    func f42() {
    	var p, q, r int
    	f43([]*int{&p, &q, &r}) // ERROR "stack object .autotmp_[0-9]+ \[3\]\*int$"
    	f43([]*int{&p, &r, &q})
    	f43([]*int{&q, &p, &r})
    }
    
    //go:noescape
    func f43(a []*int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top