const internal/bytealg.PrimeRK

17 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#L72: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L74: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L89: 		hash = hash*PrimeRK + uint32(sep[i])
		bytealg.go#L91: 	var pow, sq uint32 = 1, PrimeRK
		bytealg.go#L109: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L115: 		h *= PrimeRK
		bytealg.go#L134: 		h = h*PrimeRK + uint32(s[i])
		bytealg.go#L140: 		h *= PrimeRK

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

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