Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for f4 (0.02 sec)

  1. src/cmd/asm/internal/asm/operand_test.go

    	{"R10", "R10"},
    	{"R11", "R11"},
    	{"R12", "R12"},
    	// {"R13", "R13"}, R13 is g
    	{"R14", "R14"},
    	{"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"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. src/go/parser/parser_test.go

    package p
    type T struct {
    	/* F1 lead comment */
    	//
    	F1 int  /* F1 */ // line comment
    	// F2 lead
    	// comment
    	F2 int  // F2 line comment
    	// f3 lead comment
    	f3 int  // f3 line comment
    
    	f4 int   /* not a line comment */ ;
            f5 int ; // f5 line comment
    	f6 int ; /* f6 line comment */
    	f7 int ; /*f7a*/ /*f7b*/ //f7c
    }
    `, ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	{VCVT_EQ_U32_F64, []int{1, 0}, "VCVT", "MOVDW.U"},
    }
    
    // convert FP instructions from GNU syntax to Plan 9 syntax, for example,
    // vadd.f32 s0, s3, s4 -> ADDF F0, S3, F2
    // vsub.f64 d0, d2, d4 -> SUBD F0, F2, F4
    // vldr s2, [r11] -> MOVF (R11), F1
    // inputs: instruction name and arguments in GNU syntax
    // return values: corresponding instruction name and arguments in Plan 9 syntax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    			},
    		},
    		{
    			example: hex("fbfff0000000000000"),
    			decoded: math.Inf(-1),
    			encoded: hex("f9fc00"),
    			reasons: []string{
    				reasonFloatPacked,
    			},
    		},
    		{
    			example: hex("f4"),
    			decoded: false,
    		},
    		{
    			example: hex("f5"),
    			decoded: true,
    		},
    		{
    			example: hex("f6"),
    			decoded: nil,
    		},
    		{
    			example: hex("f7"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	"R27",
    	"R28",
    	"R29",
    	"g",   // REGG.  Using name "g" and setting Config.hasGReg makes it "just happen".
    	"R31", // REGTMP
    
    	"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",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. src/runtime/asm_loong64.s

    	MOVV	R16, (12*8)(R25)
    	MOVV	R17, (13*8)(R25)
    	MOVV	R18, (14*8)(R25)
    	MOVV	R19, (15*8)(R25)
    	MOVD	F0, (16*8)(R25)
    	MOVD	F1, (17*8)(R25)
    	MOVD	F2, (18*8)(R25)
    	MOVD	F3, (19*8)(R25)
    	MOVD	F4, (20*8)(R25)
    	MOVD	F5, (21*8)(R25)
    	MOVD	F6, (22*8)(R25)
    	MOVD	F7, (23*8)(R25)
    	MOVD	F8, (24*8)(R25)
    	MOVD	F9, (25*8)(R25)
    	MOVD	F10, (26*8)(R25)
    	MOVD	F11, (27*8)(R25)
    	MOVD	F12, (28*8)(R25)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. test/loopbce.go

    }
    
    func f2(a []int) int {
    	x := 0
    	for i := 1; i < len(a); i++ { // ERROR "Induction variable: limits \[1,\?\), increment 1$"
    		x += a[i] // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    	}
    	return x
    }
    
    func f4(a [10]int) int {
    	x := 0
    	for i := 0; i < len(a); i += 2 { // ERROR "Induction variable: limits \[0,8\], increment 2$"
    		x += a[i] // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    	}
    	return x
    }
    
    func f5(a [10]int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    	"R3",
    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"g",   // aka R10
    	"R11", // tmp
    	"R12",
    	"SP",  // aka R13
    	"R14", // link
    	"R15", // pc
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    	"F14",
    	"F15", // tmp
    
    	// If you add registers, update asyncPreempt in runtime.
    
    	// pseudo-registers
    	"SB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  9. test/escape2.go

    //go:noescape
    
    func F3(x []byte) // ERROR "x does not escape$"
    
    func F4(x []byte) // ERROR "leaking param: x$"
    
    func G() {
    	var buf1 [10]byte
    	F1(buf1[:])
    
    	var buf2 [10]byte // ERROR "moved to heap: buf2$"
    	F2(buf2[:])
    
    	var buf3 [10]byte
    	F3(buf3[:])
    
    	var buf4 [10]byte // ERROR "moved to heap: buf4$"
    	F4(buf4[:])
    }
    
    type Tm struct {
    	x int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. test/live.go

    // function entry and code above the declaration of x
    // but would not include an indirect use of x in an infinite loop.
    // Check that these cases are handled correctly.
    
    func f4(b1, b2 bool) { // x not live here
    	if b2 {
    		printint(0) // x not live here
    		return
    	}
    	var z **int
    	x := new(int) // ERROR "stack object x \*int$"
    	*x = 42
    	z = &x
    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