const internal/bytealg.PrimeRK

11 uses

	internal/bytealg (current package)
		bytealg.go#L31: const PrimeRK = 16777619
		bytealg.go#L38: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L40: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L55: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L57: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L75: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L81: 		h *= PrimeRK
		bytealg.go#L101: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L107: 		h *= PrimeRK

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