Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FlatValue (0.09 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)
  3. src/internal/profile/graph.go

    }
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // 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
    }
    
    // CumValue returns the inclusive value for this node, computing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top