const internal/bytealg.PrimeRK

11 uses

	internal/bytealg (current package)
		bytealg.go#L28: const PrimeRK = 16777619
		bytealg.go#L35: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L37: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L52: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L54: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L72: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L78: 		h *= PrimeRK
		bytealg.go#L98: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L104: 		h *= PrimeRK

	strings
		strings.go#L101: 		h = h*bytealg.PrimeRK + uint32(s[i])
		strings.go#L107: 		h *= bytealg.PrimeRK