Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 215 of 215 for original (0.58 sec)

  1. src/go/parser/resolver.go

    			}
    		}
    	}
    }
    
    func (r *resolver) shortVarDecl(decl *ast.AssignStmt) {
    	// Go spec: A short variable declaration may redeclare variables
    	// provided they were originally declared in the same block with
    	// the same type, and at least one of the non-blank variables is new.
    	n := 0 // number of new variables
    	for _, x := range decl.Lhs {
    		if ident, isIdent := x.(*ast.Ident); isIdent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    	instructions["MOVNTDQ"] = x86.AMOVNTO
    	instructions["MOVOA"] = x86.AMOVO
    	instructions["PSLLDQ"] = x86.APSLLO
    	instructions["PSRLDQ"] = x86.APSRLO
    	instructions["PADDD"] = x86.APADDL
    	// Spellings originally used in CL 97235.
    	instructions["MOVBELL"] = x86.AMOVBEL
    	instructions["MOVBEQQ"] = x86.AMOVBEQ
    	instructions["MOVBEWW"] = x86.AMOVBEW
    
    	return &Arch{
    		LinkArch:       linkArch,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    		gover.Startup.AutoFile = file
    		if toolchain == "default" {
    			// "default" means always use the default toolchain,
    			// which is already set, so nothing to do here.
    			// Note that if we have Go 1.21 installed originally,
    			// GOTOOLCHAIN=go1.30.0+auto or GOTOOLCHAIN=go1.30.0,
    			// and the go.mod  says "toolchain default", we use Go 1.30, not Go 1.21.
    			// That is, default overrides the "auto" part of the calculation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    		return true
    	}
    	sym := f.fe.Func().Sym()
    	return base.DebugHashMatchPkgFunc(sym.Pkg.Path, sym.Name)
    }
    
    func (f *Func) spSb() (sp, sb *Value) {
    	initpos := src.NoXPos // These are originally created with no position in ssa.go; if they are optimized out then recreated, should be the same.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpSB {
    			sb = v
    		}
    		if v.Op == OpSP {
    			sp = v
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/runtime/time.go

    	// so that if the minWhenModified is observed to be 0, that means the minWhenHeap that
    	// follows will include the information that was zeroed out of it.
    	//
    	// Originally Step 3 locked every timer, which made sure any timer update that was
    	// already in progress during Steps 1+2 completed and was observed by Step 3.
    	// All that locking was too expensive, so now we do an atomic load of t.astate to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top