Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for smallAllocCount (0.39 sec)

  1. src/runtime/mstats.go

    	a.inPtrScalarBits += b.inPtrScalarBits
    
    	a.tinyAllocCount += b.tinyAllocCount
    	a.largeAlloc += b.largeAlloc
    	a.largeAllocCount += b.largeAllocCount
    	for i := range b.smallAllocCount {
    		a.smallAllocCount[i] += b.smallAllocCount[i]
    	}
    	a.largeFree += b.largeFree
    	a.largeFreeCount += b.largeFreeCount
    	for i := range b.smallFreeCount {
    		a.smallFreeCount[i] += b.smallFreeCount[i]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/runtime/metrics.go

    	// Calculate derived stats.
    	a.totalAllocs = a.largeAllocCount
    	a.totalFrees = a.largeFreeCount
    	a.totalAllocated = a.largeAlloc
    	a.totalFreed = a.largeFree
    	for i := range a.smallAllocCount {
    		na := a.smallAllocCount[i]
    		nf := a.smallFreeCount[i]
    		a.totalAllocs += na
    		a.totalFrees += nf
    		a.totalAllocated += na * uint64(class_to_size[i])
    		a.totalFreed += nf * uint64(class_to_size[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top