Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FlatValue (0.27 sec)

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

    				fmt.Fprintf(w, "%10s %10s %10x: %s\n",
    					valueOrDot(n.flatValue(), rpt),
    					valueOrDot(n.cumValue(), rpt),
    					n.address, n.instruction,
    				)
    			case len(n.instruction) < 40:
    				// Short instruction, print loc on the same line.
    				fmt.Fprintf(w, "%10s %10s %10x: %-40s;%s\n",
    					valueOrDot(n.flatValue(), rpt),
    					valueOrDot(n.cumValue(), rpt),
    					n.address, n.instruction,
    					locStr,
    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/vendor/github.com/google/pprof/internal/graph/graph.go

    	// to, or "" for numeric tags not associated to a label tag.
    	NumericTags map[string]TagMap
    }
    
    // FlatValue returns the exclusive value for this node, computing the
    // mean if a divisor is available.
    func (n *Node) FlatValue() int64 {
    	if n.FlatDiv == 0 {
    		return n.Flat
    	}
    	return n.Flat / n.FlatDiv
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top