const internal/bytealg.PrimeRK

11 uses

	internal/bytealg (current package)
		bytealg.go#L33: const PrimeRK = 16777619
		bytealg.go#L40: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L42: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L57: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L59: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L77: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L83: 		h *= PrimeRK
		bytealg.go#L103: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L109: 		h *= PrimeRK

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