Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for f10 (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    	R15
    	R16
    	R17
    	R18
    	R19
    	R20
    	R21
    	R22
    	R23
    	R24
    	R25
    	R26
    	R27
    	R28
    	R29
    	R30
    	R31
    	F0
    	F1
    	F2
    	F3
    	F4
    	F5
    	F6
    	F7
    	F8
    	F9
    	F10
    	F11
    	F12
    	F13
    	F14
    	F15
    	F16
    	F17
    	F18
    	F19
    	F20
    	F21
    	F22
    	F23
    	F24
    	F25
    	F26
    	F27
    	F28
    	F29
    	F30
    	F31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    	"F14",
    	"F15",
    
    	"F16",
    	"F17",
    	"F18",
    	"F19",
    	"F20",
    	"F21",
    	"F22",
    	"F23",
    	"F24",
    	"F25",
    	"F26",
    	"F27",
    	"F28",
    	"F29",
    	"F30",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. test/nilptr3.go

    }
    
    func f9() []int {
    	x := new([1]int)
    	x[0] = 1  // ERROR "removed nil check"
    	y := x[:] // ERROR "removed nil check"
    	return y
    }
    
    // See issue 42673.
    func f10(p **int) int {
    	return * // ERROR "removed nil check"
    	/* */
    	*p // ERROR "removed nil check"
    }
    
    func f11(x []byte) {
    	p := (*[0]byte)(x)
    	_ = *p // ERROR "generated nil check"
    	q := (*[4]byte)(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVF.S	F9, 0xfff0(R4)     // ERROR "invalid .S suffix"
    	ADDF.S	F1, F2, F3         // ERROR "invalid .S suffix"
    	SUBD.U	F1, F2             // ERROR "invalid .U suffix"
    	NEGF.W	F9, F10            // ERROR "invalid .W suffix"
    	ABSD.P	F9, F10            // ERROR "invalid .P suffix"
    	MOVW.S	FPSR, R0           // ERROR "invalid .S suffix"
    	MOVW.P	g, FPSR            // ERROR "invalid .P suffix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  5. test/escape5.go

    	if p == nil {
    		k = T2{}
    		return
    	}
    
    	// should make p leak always
    	global = p
    	return T2{p}
    }
    
    func f9() {
    	var j T1 // ERROR "moved to heap: j"
    	f8(&j)
    }
    
    func f10() {
    	// These don't escape but are too big for the stack
    	var x [1 << 30]byte         // ERROR "moved to heap: x"
    	var y = make([]byte, 1<<30) // ERROR "make\(\[\]byte, 1073741824\) escapes to heap"
    	_ = x[0] + y[0]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. test/writebarrier.go

    	i := 0
    	z[i] = x // ERROR "write barrier"
    	i++
    	z[i] = y // ERROR "write barrier"
    	i++
    	return z[:i]
    }
    
    func f9(x *interface{}, v *byte) {
    	*x = v // ERROR "write barrier"
    }
    
    func f10(x *byte, f func(interface{})) {
    	f(x)
    }
    
    func f11(x *unsafe.Pointer, y unsafe.Pointer) {
    	*x = unsafe.Pointer(uintptr(y) + 1) // ERROR "write barrier"
    }
    
    func f12(x []*int, y *int) []*int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 19:46:36 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/operand_test.go

    	{"R15", "R15"},
    	{"F0", "F0"},
    	{"F1", "F1"},
    	{"F2", "F2"},
    	{"F3", "F3"},
    	{"F4", "F4"},
    	{"F5", "F5"},
    	{"F6", "F6"},
    	{"F7", "F7"},
    	{"F8", "F8"},
    	{"F9", "F9"},
    	{"F10", "F10"},
    	{"F11", "F11"},
    	{"F12", "F12"},
    	{"F13", "F13"},
    	{"F14", "F14"},
    	{"F15", "F15"},
    	{"V0", "V0"},
    	{"V1", "V1"},
    	{"V2", "V2"},
    	{"V3", "V3"},
    	{"V4", "V4"},
    	{"V5", "V5"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/ptr_test.go

    		// Passing the address of a slice of an array that is
    		// an element in a struct, with a type conversion.
    		name:    "sliceok3",
    		c:       `void f10(void* p) {}`,
    		imports: []string{"unsafe"},
    		support: `type S10 struct { p *int; a [4]byte }`,
    		body:    `i := 0; p := &S10{p:&i}; s := p.a[:]; C.f10(unsafe.Pointer(&s[0]))`,
    		fail:    false,
    	},
    	{
    		// Passing the address of a slice of an array that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    	// R28 = REGSB not used in regalloc
    	"SP",  // aka R29
    	"g",   // aka R30
    	"R31", // aka REGLINK
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    	"F14",
    	"F15",
    	"F16",
    	"F17",
    	"F18",
    	"F19",
    	"F20",
    	"F21",
    	"F22",
    	"F23",
    	"F24",
    	"F25",
    	"F26",
    	"F27",
    	"F28",
    	"F29",
    	"F30",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. test/live.go

    	i9 = y                  // make y escape so the line above has to call convT
    	return x != y
    }
    
    // liveness formerly confused by UNDEF followed by RET,
    // leading to "live at entry to f10: ~r1" (unnamed result).
    
    func f10() string {
    	panic(1)
    }
    
    // liveness formerly confused by select, thinking runtime.selectgo
    // can return to next instruction; it always jumps elsewhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top