Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for f11 (0.04 sec)

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

    	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
    	V0 // VSX extension, F0 is V0[0:63].
    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

    	"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",
    	"F31",
    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. src/cmd/asm/internal/asm/testdata/s390x.s

    	CLFEBR	F15, R1                // b39c501f
    	CLFDBR	F14, R2                // b39d502e
    	CLGEBR	F13, R3                // b3ac503d
    	CLGDBR	F12, R4                // b3ad504c
    
    	FMOVS	$0, F11                // b37400b0
    	FMOVD	$0, F12                // b37500c0
    	FMOVS	(R1)(R2*1), F0         // 78021000
    	FMOVS	n-8(SP), F15           // 78f0f010
    	FMOVD	-9999999(R8)(R9*1), F8 // c0a1ff67698141aa9000688a8000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  4. test/nilptr3.go

    	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)
    	_ = *q // ERROR "removed nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. test/writebarrier.go

    	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 {
    	// write barrier for storing y in x's underlying array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 19:46:36 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    	{"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"},
    	{"V6", "V6"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/ptr_test.go

    		// an element in a struct, with a type conversion.
    		name:    "sliceok4",
    		c:       `typedef void* PV11; void f11(PV11 p) {}`,
    		imports: []string{"unsafe"},
    		support: `type S11 struct { p *int; a [4]byte }`,
    		body:    `i := 0; p := &S11{p:&i}; C.f11(C.PV11(unsafe.Pointer(&p.a[0])))`,
    		fail:    false,
    	},
    	{
    		// Passing the address of a static variable with no
    		// pointers doesn't matter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. 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",
    	"F31",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

      private static final ImmutableSet<String> VALID_NAME =
          ImmutableSet.of(
              "foo.com",
              "f-_-o.cOM",
              "f--1.com",
              "f11-1.com",
              "www",
              "abc.a23",
              "biz.com.ua",
              "x",
              "fOo",
              "f--o",
              "f_a",
              "foo.net.us\uFF61ocm",
              "woo.com.",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertEquals("01", webConfig.getId());
            assertTrue(webConfig instanceof WebConfig);
            final CrawlingConfig fileConfig = crawlingConfigHelper.getCrawlingConfig("F11");
            assertEquals("11", fileConfig.getId());
            assertTrue(fileConfig instanceof FileConfig);
            final CrawlingConfig dataConfig = crawlingConfigHelper.getCrawlingConfig("D21");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top