Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for Atack (0.03 sec)

  1. src/cmd/internal/obj/x86/seh.go

    func populateSeh(ctxt *obj.Link, s *obj.LSym) (sehsym *obj.LSym) {
    	if s.NoFrame() {
    		return
    	}
    
    	// This implementation expects the following function prologue layout:
    	// - Stack split code (optional)
    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    	// If the prologue layout change, the unwind information should be updated
    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/dwtest/dwtest.go

    	for entry, err := rdr.Next(); entry != nil; entry, err = rdr.Next() {
    		if err != nil {
    			return err
    		}
    		if entry.Tag == 0 {
    			// terminator
    			if len(nesting) == 0 {
    				return errors.New("nesting stack underflow")
    			}
    			nesting = nesting[:len(nesting)-1]
    			continue
    		}
    		idx := len(ex.dies)
    		ex.dies = append(ex.dies, entry)
    		if _, found := ex.idxByOffset[entry.Offset]; found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    		panic("sha3: Sum after Read")
    	}
    
    	// Make a copy of the original hash so that caller can keep writing
    	// and summing.
    	dup := d.clone()
    	hash := make([]byte, dup.outputLen, 64) // explicit cap to allow stack allocation
    	dup.Read(hash)
    	return append(in, hash...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/coverage/cover.go

    		pkPathNode, pkIdNode, cmodeNode, cgranNode}, false)
    	assign := callx
    	if pkid == coverage.NotHardCoded {
    		assign = typecheck.Stmt(ir.NewAssignStmt(pos, cnames.PkgIdVar, callx))
    	}
    
    	// Tack the call onto the start of our init function. We do this
    	// early in the init since it's possible that instrumented function
    	// bodies (with counter updates) might be inlined into init.
    	cnames.InitFn.Body.Prepend(assign)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/runtime/histogram.go

    	// overflow counts all the times we got a duration that exceeded
    	// the range counts represents.
    	overflow atomic.Uint64
    }
    
    // record adds the given duration to the distribution.
    //
    // Disallow preemptions and stack growths because this function
    // may run in sensitive locations.
    //
    //go:nosplit
    func (h *timeHistogram) record(duration int64) {
    	// If the duration is negative, capture that in underflow.
    	if duration < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	BuildID() string
    
    	// SourceLine reports the source line information for a given
    	// address in the file. Due to inlining, the source line information
    	// is in general a list of positions representing a call stack,
    	// with the leaf function first.
    	SourceLine(addr uint64) ([]Frame, error)
    
    	// Symbols returns a list of symbols in the object file.
    	// If r is not nil, Symbols restricts the list to symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/internal/godebug/godebug.go

    		s.setting = lookup(s.Name())
    		if s.info == nil && !s.Undocumented() {
    			panic("godebug: Value of name not listed in godebugs.All: " + s.name)
    		}
    	})
    	v := *s.value.Load()
    	if v.bisect != nil && !v.bisect.Stack(&stderr) {
    		return ""
    	}
    	return v.text
    }
    
    // lookup returns the unique *setting value for the given name.
    func lookup(name string) *setting {
    	if v, ok := cache.Load(name); ok {
    		return v.(*setting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top