runtime.maptype.bucketsize (field)

58 uses

	runtime (current package)
		map.go#L208: 	return *(**bmap)(add(unsafe.Pointer(b), uintptr(t.bucketsize)-sys.PtrSize))
		map.go#L212: 	*(**bmap)(add(unsafe.Pointer(b), uintptr(t.bucketsize)-sys.PtrSize)) = ovf
		map.go#L253: 			h.extra.nextOverflow = (*bmap)(add(unsafe.Pointer(ovf), uintptr(t.bucketsize)))
		map.go#L382: 		nextOverflow = (*bmap)(add(buckets, base*uintptr(t.bucketsize)))
		map.go#L383: 		last := (*bmap)(add(buckets, (nbuckets-1)*uintptr(t.bucketsize)))
		map.go#L415: 	b := (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map.go#L421: 		oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map.go#L473: 	b := (*bmap)(unsafe.Pointer(uintptr(h.buckets) + (hash&m)*uintptr(t.bucketsize)))
		map.go#L479: 		oldb := (*bmap)(unsafe.Pointer(uintptr(c) + (hash&m)*uintptr(t.bucketsize)))
		map.go#L517: 	b := (*bmap)(unsafe.Pointer(uintptr(h.buckets) + (hash&m)*uintptr(t.bucketsize)))
		map.go#L523: 		oldb := (*bmap)(unsafe.Pointer(uintptr(c) + (hash&m)*uintptr(t.bucketsize)))
		map.go#L602: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map.go#L715: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map.go#L880: 			b = (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
		map.go#L884: 				b = (*bmap)(add(it.buckets, bucket*uintptr(t.bucketsize)))
		map.go#L888: 			b = (*bmap)(add(it.buckets, bucket*uintptr(t.bucketsize)))
		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#L1147: 		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.bucketsize)))
		map.go#L1155: 			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.bucketsize)))
		map.go#L1237: 			b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
		map.go#L1241: 			n := uintptr(t.bucketsize) - dataOffset
		map_fast32.go#L30: 		b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map_fast32.go#L36: 			oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map_fast32.go#L70: 		b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map_fast32.go#L76: 			oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map_fast32.go#L117: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_fast32.go#L207: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_fast32.go#L293: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_fast32.go#L374: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
		map_fast32.go#L383: 		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.bucketsize)))
		map_fast32.go#L391: 			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.bucketsize)))
		map_fast32.go#L449: 			b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
		map_fast32.go#L453: 			n := uintptr(t.bucketsize) - dataOffset
		map_fast64.go#L30: 		b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map_fast64.go#L36: 			oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map_fast64.go#L70: 		b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map_fast64.go#L76: 			oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map_fast64.go#L117: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_fast64.go#L207: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_fast64.go#L293: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_fast64.go#L376: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
		map_fast64.go#L385: 		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.bucketsize)))
		map_fast64.go#L393: 			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.bucketsize)))
		map_fast64.go#L457: 			b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
		map_fast64.go#L461: 			n := uintptr(t.bucketsize) - dataOffset
		map_faststr.go#L81: 	b := (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map_faststr.go#L87: 		oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map_faststr.go#L176: 	b := (*bmap)(add(h.buckets, (hash&m)*uintptr(t.bucketsize)))
		map_faststr.go#L182: 		oldb := (*bmap)(add(c, (hash&m)*uintptr(t.bucketsize)))
		map_faststr.go#L228: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_faststr.go#L319: 	b := (*bmap)(add(h.buckets, bucket*uintptr(t.bucketsize)))
		map_faststr.go#L399: 	b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.bucketsize)))
		map_faststr.go#L408: 		x.b = (*bmap)(add(h.buckets, oldbucket*uintptr(t.bucketsize)))
		map_faststr.go#L416: 			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.bucketsize)))
		map_faststr.go#L469: 			b := add(h.oldbuckets, oldbucket*uintptr(t.bucketsize))
		map_faststr.go#L473: 			n := uintptr(t.bucketsize) - dataOffset
		type.go#L381: 	bucketsize uint16 // size of bucket