const internal/bytealg.PrimeRK

17 uses

	internal/bytealg (current package)
		bytealg.go#L32: const PrimeRK = 16777619
		bytealg.go#L39: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L41: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L56: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L58: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L73: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L75: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L90: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L92: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L110: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L116: 		h *= PrimeRK
		bytealg.go#L135: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L141: 		h *= PrimeRK

	bytes
		bytes.go#L129: 		h = h*bytealg.PrimeRK + uint32(s[i])
		bytes.go#L135: 		h *= bytealg.PrimeRK

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