runtime.hmap.oldbuckets (field)
24 uses
runtime (current package)
map.go#L125: oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
map.go#L416: if c := h.oldbuckets; c != nil {
map.go#L474: if c := h.oldbuckets; c != nil {
map.go#L518: if c := h.oldbuckets; c != nil {
map.go#L880: b = (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map.go#L996: h.oldbuckets = nil
map.go#L1045: h.oldbuckets = oldbuckets
map.go#L1091: return h.oldbuckets != nil
map.go#L1125: b := (*bmap)(add(h.oldbuckets, bucket*uintptr(t.bucketsize)))
map.go#L1138: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map.go#L1237: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
map.go#L1264: h.oldbuckets = nil
map_fast32.go#L31: if c := h.oldbuckets; c != nil {
map_fast32.go#L71: if c := h.oldbuckets; c != nil {
map_fast32.go#L374: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map_fast32.go#L449: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
map_fast64.go#L31: if c := h.oldbuckets; c != nil {
map_fast64.go#L71: if c := h.oldbuckets; c != nil {
map_fast64.go#L376: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map_fast64.go#L457: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
map_faststr.go#L82: if c := h.oldbuckets; c != nil {
map_faststr.go#L177: if c := h.oldbuckets; c != nil {
map_faststr.go#L399: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
map_faststr.go#L469: b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
 |
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. |