Searched refs:XXH32_round (Results 1 – 1 of 1) sorted by relevance
/PHP-8.2/ext/hash/xxhash/ |
H A D | xxhash.h | 1913 static xxh_u32 XXH32_round(xxh_u32 acc, xxh_u32 input) in XXH32_round() function 2098 v1 = XXH32_round(v1, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2099 v2 = XXH32_round(v2, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2100 v3 = XXH32_round(v3, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2101 v4 = XXH32_round(v4, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2196 state->v[0] = XXH32_round(state->v[0], XXH_readLE32(p32)); p32++; in XXH32_update() 2199 state->v[3] = XXH32_round(state->v[3], XXH_readLE32(p32)); in XXH32_update() 2209 state->v[0] = XXH32_round(state->v[0], XXH_readLE32(p)); p+=4; in XXH32_update() 2210 state->v[1] = XXH32_round(state->v[1], XXH_readLE32(p)); p+=4; in XXH32_update() 2211 state->v[2] = XXH32_round(state->v[2], XXH_readLE32(p)); p+=4; in XXH32_update() [all …]
|
Completed in 18 milliseconds