Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for subbuckets (0.44 sec)

  1. src/runtime/symtab.go

    }
    
    // findfuncbucket is an array of these structures.
    // Each bucket represents 4096 bytes of the text segment.
    // Each subbucket represents 256 bytes of the text segment.
    // To find a function given a pc, locate the bucket and subbucket for
    // that pc. Add together the idx and subbucket value to obtain a
    // function index. Then scan the functab array starting at that
    // index to find the target function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    )
    
    type TimeHistogram timeHistogram
    
    // Counts returns the counts for the given bucket, subBucket indices.
    // Returns true if the bucket was valid, otherwise returns the counts
    // for the overflow bucket if bucket > 0 or the underflow bucket if
    // bucket < 0, and false.
    func (th *TimeHistogram) Count(bucket, subBucket int) (uint64, bool) {
    	t := (*timeHistogram)(th)
    	if bucket < 0 {
    		return t.underflow.Load(), false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // which is used in blocking and mutex profiles.
    type blockRecord struct {
    	count  float64
    	cycles int64
    }
    
    var (
    	mbuckets atomic.UnsafePointer // *bucket, memory profile buckets
    	bbuckets atomic.UnsafePointer // *bucket, blocking profile buckets
    	xbuckets atomic.UnsafePointer // *bucket, mutex profile buckets
    	buckhash atomic.UnsafePointer // *buckhashArray
    
    	mProfCycle mProfCycleHolder
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top