XXH_FORCE_INLINE xxh_u64x2 XXH_vec_loadu()

in include/hash/xxhash.h [2477:2485]


XXH_FORCE_INLINE xxh_u64x2 XXH_vec_loadu(const void *ptr)
{
    xxh_u64x2 ret;
    memcpy(&ret, ptr, sizeof(xxh_u64x2));
# if XXH_VSX_BE
    ret = XXH_vec_revb(ret);
# endif
    return ret;
}