runtime.hmap.nevacuate (field)
17 uses
runtime (current package)
map.go#L126: nevacuate uintptr // progress counter for evacuation (buckets less than this have been evacuated)
map.go#L997: h.nevacuate = 0
map.go#L1047: h.nevacuate = 0
map.go#L1120: evacuate(t, h, h.nevacuate)
map.go#L1246: if oldbucket == h.nevacuate {
map.go#L1252: h.nevacuate++
map.go#L1255: stop := h.nevacuate + 1024
map.go#L1259: for h.nevacuate != stop && bucketEvacuated(t, h, h.nevacuate) {
map.go#L1260: h.nevacuate++
map.go#L1262: if h.nevacuate == newbit { // newbit == # of oldbuckets
map_fast32.go#L369: evacuate_fast32(t, h, h.nevacuate)
map_fast32.go#L458: if oldbucket == h.nevacuate {
map_fast64.go#L371: evacuate_fast64(t, h, h.nevacuate)
map_fast64.go#L466: if oldbucket == h.nevacuate {
map_faststr.go#L394: evacuate_faststr(t, h, h.nevacuate)
map_faststr.go#L478: if oldbucket == h.nevacuate {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |