Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for unminit (0.11 sec)

  1. src/cmd/compile/internal/walk/order.go

    				do(1, types.Types[types.TBOOL])
    				if len(init) != 0 {
    					ir.DumpList("ninit", init)
    					base.Fatalf("ninit on select recv")
    				}
    				orderBlock(ncas.PtrInit(), o.free)
    
    			case ir.OSEND:
    				r := r.(*ir.SendStmt)
    				if len(r.Init()) != 0 {
    					ir.DumpList("ninit", r.Init())
    					base.Fatalf("ninit on select send")
    				}
    
    				// case c <- x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    				if n == nil {
    					continue
    				}
    				n.addSample(dw, w, labels, sample.NumLabel, sample.NumUnit, o.FormatTag, false)
    				if parent != nil {
    					parent.AddToEdgeDiv(n, dw, w, false, lidx != len(lines)-1)
    				}
    				parent = n
    			}
    		}
    		if parent != nil {
    			parent.addSample(dw, w, labels, sample.NumLabel, sample.NumUnit, o.FormatTag, true)
    		}
    	}
    
    	nodes := make(Nodes, 0, len(prof.Location))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		var numKeys []string
    		for k := range s.NumLabel {
    			numKeys = append(numKeys, k)
    		}
    		sort.Strings(numKeys)
    		for _, k := range numKeys {
    			keyX := addString(strings, k)
    			vs := s.NumLabel[k]
    			units := s.NumUnit[k]
    			for i, v := range vs {
    				var unitX int64
    				if len(units) != 0 {
    					unitX = addString(strings, units[i])
    				}
    				s.labelX = append(s.labelX,
    					label{
    						keyX:  keyX,
    						numX:  v,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    				unit := o.NumLabelUnits[k]
    				numValues := make([]int64, len(vs))
    				numUnit := make([]string, len(vs))
    				for i, v := range vs {
    					numValues[i] = v
    					numUnit[i] = unit
    				}
    				numLabels[k] = append(numLabels[k], numValues...)
    				numUnits[k] = append(numUnits[k], numUnit...)
    			}
    		}
    		s.NumLabel = numLabels
    		s.NumUnit = numUnits
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. src/encoding/gob/encode.go

    }
    
    func buildEncEngine(info *typeInfo, ut *userTypeInfo, building map[*typeInfo]bool) *encEngine {
    	// Check for recursive types.
    	if building != nil && building[info] {
    		return nil
    	}
    	info.encInit.Lock()
    	defer info.encInit.Unlock()
    	enc := info.encoder.Load()
    	if enc == nil {
    		if building == nil {
    			building = make(map[*typeInfo]bool)
    		}
    		building[info] = true
    		enc = compileEnc(ut, building)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_ppc64x.s

    	P8_STXVB16X(V1,blk_out,R0); \
    	P8_STXVB16X(V2,blk_out,R16); \
    	P8_STXVB16X(V3,blk_out,R17); \
    	P8_STXVB16X(V4,blk_out,R18); \
    	ADD $64, blk_out
    
    // func gcmInit(productTable *[256]byte, h []byte)
    TEXT ยทgcmInit(SB), NOSPLIT, $0-32
    	MOVD productTable+0(FP), XIP
    	MOVD h+8(FP), HTBL
    
    	MOVD   $0x10, R8
    	MOVD   $0x20, R9
    	MOVD   $0x30, R10
    	LXVD2X (HTBL)(R0), VH // Load H
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. src/internal/profile/profile.go

    	typeX int64
    	unitX int64
    }
    
    // Sample corresponds to Profile.Sample
    type Sample struct {
    	Location []*Location
    	Value    []int64
    	Label    map[string][]string
    	NumLabel map[string][]int64
    	NumUnit  map[string][]string
    
    	locationIDX []uint64
    	labelX      []Label
    }
    
    // Label corresponds to Profile.Label
    type Label struct {
    	keyX int64
    	// Exactly one of the two following values must be set
    	strX int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/expr.go

    	if n == nil {
    		return n
    	}
    
    	if n, ok := n.(ir.InitNode); ok && init == n.PtrInit() {
    		// not okay to use n->ninit when walking n,
    		// because we might replace n with some other node
    		// and would lose the init list.
    		base.Fatalf("walkExpr init == &n->ninit")
    	}
    
    	if len(n.Init()) != 0 {
    		walkStmtList(n.Init())
    		init.Append(ir.TakeInit(n)...)
    	}
    
    	lno := ir.SetPos(n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/runtime/stubs.go

    //
    // When fn is nil (frame is saved g), call dropm instead,
    // this is used when the C thread is exiting.
    func cgocallback(fn, frame, ctxt uintptr)
    
    func gogo(buf *gobuf)
    
    func asminit()
    func setg(gg *g)
    func breakpoint()
    
    // reflectcall calls fn with arguments described by stackArgs, stackArgsSize,
    // frameSize, and regArgs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/strconv/atof_test.go

    		test := &atoftests[i]
    		if test.err != nil {
    			continue
    		}
    		// Adding characters that do not extend a number should not invalidate it.
    		// Test a few. The "i" and "init" cases test that we accept "infi", "infinit"
    		// correctly as "inf" with suffix.
    		for _, suffix := range []string{" ", "q", "+", "-", "<", "=", ">", "(", ")", "i", "init"} {
    			in := test.in + suffix
    			_, n, err := ParseFloatPrefix(in, 64)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
Back to top