Home
last modified time | relevance | path

Searched refs:h64 (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dxxhash.c435 U64 h64; in XXH64_endian_align() local
459 h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18); in XXH64_endian_align()
460 h64 = XXH64_mergeRound(h64, v1); in XXH64_endian_align()
461 h64 = XXH64_mergeRound(h64, v2); in XXH64_endian_align()
462 h64 = XXH64_mergeRound(h64, v3); in XXH64_endian_align()
463 h64 = XXH64_mergeRound(h64, v4); in XXH64_endian_align()
466 h64 = seed + PRIME64_5; in XXH64_endian_align()
469 h64 += (U64) len; in XXH64_endian_align()
473 h64 ^= k1; in XXH64_endian_align()
474 h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4; in XXH64_endian_align()
[all …]
/freebsd/sys/contrib/zstd/lib/common/
H A Dxxhash.h2421 static xxh_u64 XXH64_avalanche(xxh_u64 h64) in XXH64_avalanche() argument
2423 h64 ^= h64 >> 33; in XXH64_avalanche()
2424 h64 *= XXH_PRIME64_2; in XXH64_avalanche()
2425 h64 ^= h64 >> 29; in XXH64_avalanche()
2426 h64 *= XXH_PRIME64_3; in XXH64_avalanche()
2427 h64 ^= h64 >> 32; in XXH64_avalanche()
2428 return h64; in XXH64_avalanche()
2435 XXH64_finalize(xxh_u64 h64, const xxh_u8* ptr, size_t len, XXH_alignment align) in XXH64_finalize() argument
2442 h64 ^= k1; in XXH64_finalize()
2443 h64 = XXH_rotl64(h64,27) * XXH_PRIME64_1 + XXH_PRIME64_4; in XXH64_finalize()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-h6-pine-h64-model-b.dts6 #include "sun50i-h6-pine-h64.dts"
12 compatible = "pine64,pine-h64-model-b", "allwinner,sun50i-h6";
H A Dsun50i-h6-pine-h64.dts13 compatible = "pine64,pine-h64", "allwinner,sun50i-h6";
48 label = "pine-h64:green:heartbeat";
53 label = "pine-h64:white:link";
58 label = "pine-h64:blue:status";
H A Dsun50i-h64-remix-mini-pc.dts13 compatible = "jide,remix-mini-pc", "allwinner,sun50i-h64",
/freebsd/sys/modules/dtb/allwinner/
H A DMakefile56 allwinner/sun50i-h6-pine-h64.dts \
57 allwinner/sun50i-h6-pine-h64-model-b.dts
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v07.c4026 U64 const h64 = XXH64_digest(&dctx->xxhState); in ZSTDv07_decompressContinue() local
4027 U32 const h32 = (U32)(h64>>11) & ((1<<22)-1); in ZSTDv07_decompressContinue()