Lines Matching full:uint64
48 startAllocs uint64
49 startBytes uint64
51 netAllocs uint64
52 netBytes uint64
226 MemAllocs uint64 // The total number of memory allocations.
227 MemBytes uint64 // The total number of bytes allocated.
377 globalN *uint64 // shared between all worker goroutines iteration counter
378 grain uint64 // acquire that many iterations from globalN at once
379 cache uint64 // local cache of acquired iterations
380 bN uint64 // total number of iterations to execute (b.N)
413 grain := uint64(0)
415 grain = 1e5 * uint64(b.previousN) / uint64(b.previousDuration)
426 n := uint64(0)
436 bN: uint64(b.N),
442 if n <= uint64(b.N) && !b.Failed() {