Searched refs:XXH32_round (Results 1 – 1 of 1) sorted by relevance
/PHP-8.1/ext/hash/xxhash/ |
H A D | xxhash.h | 1205 static xxh_u32 XXH32_round(xxh_u32 acc, xxh_u32 input) in XXH32_round() function 1374 v1 = XXH32_round(v1, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 1375 v2 = XXH32_round(v2, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 1376 v3 = XXH32_round(v3, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 1377 v4 = XXH32_round(v4, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 1470 state->v1 = XXH32_round(state->v1, XXH_readLE32(p32)); p32++; in XXH32_update() 1473 state->v4 = XXH32_round(state->v4, XXH_readLE32(p32)); in XXH32_update() 1487 v1 = XXH32_round(v1, XXH_readLE32(p)); p+=4; in XXH32_update() 1488 v2 = XXH32_round(v2, XXH_readLE32(p)); p+=4; in XXH32_update() 1489 v3 = XXH32_round(v3, XXH_readLE32(p)); p+=4; in XXH32_update() [all …]
|
Completed in 19 milliseconds