Lines Matching refs:Fetch32
48 static uint32_t Fetch32(const char *p) { in Fetch32() function
94 uint32_t a = Fetch32(s - 4 + (len >> 1)); in Hash32Len13to24()
95 uint32_t b = Fetch32(s + 4); in Hash32Len13to24()
96 uint32_t c = Fetch32(s + len - 8); in Hash32Len13to24()
97 uint32_t d = Fetch32(s + (len >> 1)); in Hash32Len13to24()
98 uint32_t e = Fetch32(s); in Hash32Len13to24()
99 uint32_t f = Fetch32(s + len - 4); in Hash32Len13to24()
118 a += Fetch32(s); in Hash32Len5to12()
119 b += Fetch32(s + len - 4); in Hash32Len5to12()
120 c += Fetch32(s + ((len >> 1) & 4)); in Hash32Len5to12()
134 uint32_t a0 = Rotate32(Fetch32(s + len - 4) * c1, 17) * c2; in CityHash32()
135 uint32_t a1 = Rotate32(Fetch32(s + len - 8) * c1, 17) * c2; in CityHash32()
136 uint32_t a2 = Rotate32(Fetch32(s + len - 16) * c1, 17) * c2; in CityHash32()
137 uint32_t a3 = Rotate32(Fetch32(s + len - 12) * c1, 17) * c2; in CityHash32()
138 uint32_t a4 = Rotate32(Fetch32(s + len - 20) * c1, 17) * c2; in CityHash32()
156 uint32_t b0 = Rotate32(Fetch32(s) * c1, 17) * c2; in CityHash32()
157 uint32_t b1 = Fetch32(s + 4); in CityHash32()
158 uint32_t b2 = Rotate32(Fetch32(s + 8) * c1, 17) * c2; in CityHash32()
159 uint32_t b3 = Rotate32(Fetch32(s + 12) * c1, 17) * c2; in CityHash32()
160 uint32_t b4 = Fetch32(s + 16); in CityHash32()
228 uint64_t a = Fetch32(s); in HashLen0to16()
229 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16()