Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for INL (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	var flatSum int64
    	for _, item := range items {
    		inl := item.InlineLabel
    		if inl != "" {
    			inl = " " + inl
    		}
    		flatSum += item.Flat
    		fmt.Fprintf(w, "%10s %s %s %10s %s  %s%s\n",
    			item.FlatFormat, measurement.Percentage(item.Flat, rpt.total),
    			measurement.Percentage(flatSum, rpt.total),
    			item.CumFormat, measurement.Percentage(item.Cum, rpt.total),
    			item.Name, inl)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    		o.InlTree = make([]goobj.InlTreeNode, len(pc.InlTree.nodes))
    		for i, inl := range pc.InlTree.nodes {
    			f, l := ctxt.getFileIndexAndLine(inl.Pos)
    			o.InlTree[i] = goobj.InlTreeNode{
    				Parent:   int32(inl.Parent),
    				File:     goobj.CUFileIndex(f),
    				Line:     l,
    				Func:     makeSymRef(inl.Func),
    				ParentPC: inl.ParentPC,
    			}
    		}
    
    		o.Write(&b)
    		p := b.Bytes()
    		isym := &LSym{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    	// Marks records scope boundary changes.
    	Marks []Mark
    
    	FieldTrack map[*obj.LSym]struct{}
    	DebugInfo  interface{}
    	LSym       *obj.LSym // Linker object in this function's native ABI (Func.ABI)
    
    	Inl *Inline
    
    	// RangeParent, if non-nil, is the first non-range body function containing
    	// the closure for the body of a range function.
    	RangeParent *Func
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    	statichash         map[string]*LSym // name -> sym mapping for static syms
    	PosTable           src.PosTable
    	InlTree            InlTree // global inlining tree used by gc/inl.go
    	DwFixups           *DwarfFixupTable
    	Imports            []goobj.ImportedPkg
    	DiagFunc           func(string, ...interface{})
    	DiagFlush          func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top