Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Mets (0.16 sec)

  1. doc/go_spec.html

    non-interface terms must be pairwise disjoint (the pairwise intersection of the type sets must be empty).
    Given a type parameter <code>P</code>:
    </p>
    
    <pre>
    interface {
    	P                // illegal: P is a type parameter
    	int | ~P         // illegal: P is a type parameter
    	~int | MyInt     // illegal: the type sets for ~int and MyInt are not disjoint (~int includes MyInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	do(typ.Params())
    	do(typ.Results())
    }
    
    // newHeapaddr allocates heap memory for n and sets its heap address.
    func (s *state) newHeapaddr(n *ir.Name) {
    	s.setHeapaddr(n.Pos(), n, s.newObject(n.Type(), nil))
    }
    
    // setHeapaddr allocates a new PAUTO variable to store ptr (which must be non-nil)
    // and then sets it as n's heap address.
    func (s *state) setHeapaddr(pos src.XPos, n *ir.Name, ptr *ssa.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	SETLE:           "SETLE",
    	SETNE:           "SETNE",
    	SETNO:           "SETNO",
    	SETNP:           "SETNP",
    	SETNS:           "SETNS",
    	SETO:            "SETO",
    	SETP:            "SETP",
    	SETS:            "SETS",
    	SFENCE:          "SFENCE",
    	SGDT:            "SGDT",
    	SHL:             "SHL",
    	SHLD:            "SHLD",
    	SHR:             "SHR",
    	SHRD:            "SHRD",
    	SHUFPD:          "SHUFPD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
Back to top