Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for Fuller (0.63 sec)

  1. src/cmd/compile/internal/typecheck/dcl.go

    )
    
    var funcStack []*ir.Func // stack of previous values of ir.CurFunc
    
    // DeclFunc declares the parameters for fn and adds it to
    // Target.Funcs.
    //
    // Before returning, it sets CurFunc to fn. When the caller is done
    // constructing fn, it must call FinishFuncBody to restore CurFunc.
    func DeclFunc(fn *ir.Func) {
    	fn.DeclareParams(true)
    	fn.Nname.Defn = fn
    	Target.Funcs = append(Target.Funcs, fn)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:15:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/internal/notsha256/sha256.go

    		n := len(p) &^ (chunk - 1)
    		block(d, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		d.nx = copy(d.x[:], p)
    	}
    	return
    }
    
    func (d *digest) Sum(in []byte) []byte {
    	// Make a copy of d so that caller can keep writing and summing.
    	d0 := *d
    	hash := d0.checkSum()
    	return append(in, hash[:]...)
    }
    
    func (d *digest) checkSum() [Size]byte {
    	len := d.len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/xposmap.go

    }
    
    // newXposmap constructs an xposmap valid for inputs which have a file index in the keys of x,
    // and line numbers in the range x[file index].
    // The resulting xposmap will panic if a caller attempts to set or add an XPos not in that range.
    func newXposmap(x map[int]lineRange) *xposmap {
    	maps := make(map[int32]*biasedSparseMap)
    	for i, p := range x {
    		maps[int32(i)] = newBiasedSparseMap(int(p.first), int(p.last))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:48:16 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/internal/pgo/pprof.go

    	}
    
    	return &Profile{
    		TotalWeight:  totalWeight,
    		NamedEdgeMap: namedEdgeMap,
    	}, nil
    }
    
    // createNamedEdgeMap builds a map of callsite-callee edge weights from the
    // profile-graph.
    //
    // Caller should ignore the profile if totalWeight == 0.
    func createNamedEdgeMap(g *profile.Graph) (edgeMap NamedEdgeMap, totalWeight int64, err error) {
    	seenStartLine := false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/asmb.go

    		Exitf("mapping output file failed: %v", err)
    	}
    }
    
    // relocSectFn wraps the function writing relocations of a section
    // for parallel execution. Returns the wrapped function and a wait
    // group for which the caller should wait.
    func relocSectFn(ctxt *Link, relocSect func(*Link, *OutBuf, *sym.Section, []loader.Sym)) (func(*Link, *sym.Section, []loader.Sym), *sync.WaitGroup) {
    	var fn func(ctxt *Link, sect *sym.Section, syms []loader.Sym)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "LoweredGetCallerPC", reg: gp01, rematerializeable: true},                                                   // returns the PC of the caller of the current function
    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},                                     // returns the SP of the caller of the current function. arg0=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    // and returns false. When useCache returns false the expectation is that
    // the caller will build the target and then call updateBuildID to finish the
    // build ID computation.
    // When useCache returns false, it may have initiated buffering of output
    // during a's work. The caller should defer b.flushOutput(a), to make sure
    // that flushOutput is eventually called regardless of whether the action
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/shell.go

    // that the command output, if non-empty, is more detailed than the command
    // error (which is usually just an exit status), so prefers using the output as
    // the ultimate error. Typically, the caller should return this error from an
    // Action, which it will be printed by the Builder.
    //
    // reportCmd formats the output as "# desc" followed by the given output. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem.
    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mvs/mvs.go

    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    	Required(m module.Version) ([]module.Version, error)
    
    	// Max returns the maximum of v1 and v2 (it returns either v1 or v2)
    	// in the module with path p.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top