func runtime.bucketMask

22 uses

	runtime (current package)
		map.go#L189: func bucketMask(b uint8) uintptr {
		map.go#L414: 	m := bucketMask(h.B)
		map.go#L472: 	m := bucketMask(h.B)
		map.go#L516: 	m := bucketMask(h.B)
		map.go#L598: 	bucket := hash & bucketMask(h.B)
		map.go#L711: 	bucket := hash & bucketMask(h.B)
		map.go#L836: 	it.startBucket = r & bucketMask(h.B)
		map.go#L922: 				if hash&bucketMask(it.B) != checkBucket {
		map_fast32.go#L29: 		m := bucketMask(h.B)
		map_fast32.go#L69: 		m := bucketMask(h.B)
		map_fast32.go#L113: 	bucket := hash & bucketMask(h.B)
		map_fast32.go#L203: 	bucket := hash & bucketMask(h.B)
		map_fast32.go#L289: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L29: 		m := bucketMask(h.B)
		map_fast64.go#L69: 		m := bucketMask(h.B)
		map_fast64.go#L113: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L203: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L289: 	bucket := hash & bucketMask(h.B)
		map_faststr.go#L80: 	m := bucketMask(h.B)
		map_faststr.go#L175: 	m := bucketMask(h.B)
		map_faststr.go#L224: 	bucket := hash & bucketMask(h.B)
		map_faststr.go#L315: 	bucket := hash & bucketMask(h.B)