Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for flatDir (0.35 sec)

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

    	Value         int64
    	Flat, FlatDiv int64
    	Cum, CumDiv   int64
    }
    
    // FlatValue returns the exclusive value for this tag, computing the
    // mean if a divisor is available.
    func (t *Tag) FlatValue() int64 {
    	if t.FlatDiv == 0 {
    		return t.Flat
    	}
    	return t.Flat / t.FlatDiv
    }
    
    // CumValue returns the inclusive value for this tag, computing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	file            string
    	line            int
    	flat, cum       int64
    	flatDiv, cumDiv int64
    	startsBlock     bool
    	inlineCalls     []callID
    }
    
    type callID struct {
    	file string
    	line int
    }
    
    func (a *assemblyInstruction) flatValue() int64 {
    	if a.flatDiv != 0 {
    		return a.flat / a.flatDiv
    	}
    	return a.flat
    }
    
    func (a *assemblyInstruction) cumValue() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				x := sp.insts[addr]
    				flatSum += x.flat
    				cumSum += x.cum
    				startsBlock := (addr != lastAddr+uint64(sp.insts[lastAddr].length))
    				lastAddr = addr
    
    				// divisors already applied, so leave flatDiv,cumDiv as 0
    				asm = append(asm, assemblyInstruction{
    					address:     x.objAddr,
    					instruction: x.disasm,
    					function:    fn.name,
    					file:        x.file,
    					line:        x.line,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top