runtime.evacDst.i (field)
17 uses
runtime (current package)
map.go#L1132: i int // key/elem index into b
map.go#L1209: if dst.i == bucketCnt {
map.go#L1211: dst.i = 0
map.go#L1215: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map.go#L1226: dst.i++
map_fast32.go#L421: if dst.i == bucketCnt {
map_fast32.go#L423: dst.i = 0
map_fast32.go#L427: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast32.go#L438: dst.i++
map_fast64.go#L423: if dst.i == bucketCnt {
map_fast64.go#L425: dst.i = 0
map_fast64.go#L429: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast64.go#L446: dst.i++
map_faststr.go#L446: if dst.i == bucketCnt {
map_faststr.go#L448: dst.i = 0
map_faststr.go#L452: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_faststr.go#L458: dst.i++
![]() |
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. |