Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CumValue (0.08 sec)

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

    					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,
    				)
    			default:
    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

    // 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
    // mean if a divisor is available.
    func (n *Node) CumValue() int64 {
    	if n.CumDiv == 0 {
    		return n.Cum
    	}
    	return n.Cum / n.CumDiv
    }
    
    // AddToEdge increases the weight of an edge between two nodes. If
    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

    // 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
    // mean if a divisor is available.
    func (n *Node) CumValue() int64 {
    	if n.CumDiv == 0 {
    		return n.Cum
    	}
    	return n.Cum / n.CumDiv
    }
    
    // AddToEdge increases the weight of an edge between two nodes. If
    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