Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for nora (0.34 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			ld = ppc64.ALWAR
    			st = ppc64.ASTWCCC
    		}
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    		// LWSYNC - Assuming shared data not write-through-required nor
    		// caching-inhibited. See Appendix B.2.2.2 in the ISA 2.07b.
    		plwsync := s.Prog(ppc64.ALWSYNC)
    		plwsync.To.Type = obj.TYPE_NONE
    		// LBAR or LWAR
    		p := s.Prog(ld)
    		p.From.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    					switch {
    					case xn:
    						// x is a defined type: nothing to do.
    					case yn:
    						// x is not a defined type and y is a defined type: select y.
    						u.set(px, y)
    					default:
    						// Neither x nor y are defined types.
    						if yc, _ := under(y).(*Chan); yc != nil && yc.dir != SendRecv {
    							// y is a directed channel type: select y.
    							u.set(px, y)
    						}
    					}
    				}
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			// they are only treated as part of a module in 'go mod' subcommands and
    			// 'go get'. However, we still don't want to accidentally corrupt their
    			// testdata during fuzzing, nor do we want to fail with surprising errors
    			// if GOROOT isn't writable (as is often the case for Go toolchains
    			// installed through package managers).
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <a href="#Method_declarations">methods</a> declared with receiver type <code>T</code>.
    </li>
    
    <li>
    The method set of a pointer to a defined type <code>T</code>
    (where <code>T</code> is neither a pointer nor an interface)
    is the set of all methods declared with receiver <code>*T</code> or <code>T</code>.
    </li>
    
    <li>The method set of an <a href="#Interface_types">interface type</a> is the intersection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // When telemetry is in local mode, counter data is written to the local file
    // system, but will not be uploaded to remote servers.
    //
    // When telemetry is off, local counter data is neither collected nor uploaded.
    //
    // When telemetry is on, telemetry data is written to the local file system
    // and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    // that is neither present in the standard library nor in any module in the
    // build list.
    func (r *resolver) loadPackages(ctx context.Context, patterns []string, findPackage func(ctx context.Context, path string, m module.Version) (versionOk bool)) {
    	opts := modload.PackageOpts{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	NAND R3, R4, R5                 // 7c851bb8
    	NANDCC R3, R4, R5               // 7c851bb9
    	EQV R3, R4, R5                  // 7c851a38
    	EQVCC R3, R4, R5                // 7c851a39
    	NOR R3, R4, R5                  // 7c8518f8
    	NORCC R3, R4, R5                // 7c8518f9
    
    	SUB R3, R4                      // 7c832050
    	SUB R3, R4, R5                  // 7ca32050
    	SUBC R3, R4                     // 7c832010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritePPC64.go

    func rewriteValuePPC64_OpCom16(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com16 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCom32(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com32 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/anames.go

    	"MOVHU",
    	"MOVW",
    	"MOVWD",
    	"MOVWF",
    	"MOVWL",
    	"MOVWR",
    	"MUL",
    	"MULD",
    	"MULF",
    	"MULU",
    	"MULH",
    	"MULHU",
    	"MULW",
    	"NEGD",
    	"NEGF",
    	"NEGW",
    	"NEGV",
    	"NOOP",
    	"NOR",
    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    	"SUBW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/telemetrycmd/telemetry.go

    When telemetry is in local mode, counter data is written to the local file
    system, but will not be uploaded to remote servers.
    
    When telemetry is off, local counter data is neither collected nor uploaded.
    
    When telemetry is on, telemetry data is written to the local file system
    and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top