Home
last modified time | relevance | path

Searched refs:h32 (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/lib/
H A Dxxhash.c136 h32 = xxh_rotl32(h32, 17) * PRIME32_4; in xxh32()
142 h32 = xxh_rotl32(h32, 11) * PRIME32_1; in xxh32()
146 h32 ^= h32 >> 15; in xxh32()
148 h32 ^= h32 >> 13; in xxh32()
150 h32 ^= h32 >> 16; in xxh32()
152 return h32; in xxh32()
357 h32 = xxh_rotl32(h32, 17) * PRIME32_4; in xxh32_digest()
363 h32 = xxh_rotl32(h32, 11) * PRIME32_1; in xxh32_digest()
367 h32 ^= h32 >> 15; in xxh32_digest()
369 h32 ^= h32 >> 13; in xxh32_digest()
[all …]
/linux-6.15/net/xfrm/
H A Dxfrm_compat.c596 static struct nlmsghdr *xfrm_user_rcv_msg_compat(const struct nlmsghdr *h32, in xfrm_user_rcv_msg_compat() argument
601 u16 type = h32->nlmsg_type - XFRM_MSG_BASE; in xfrm_user_rcv_msg_compat()
613 if ((h32->nlmsg_type == XFRM_MSG_GETSA || in xfrm_user_rcv_msg_compat()
614 h32->nlmsg_type == XFRM_MSG_GETPOLICY) && in xfrm_user_rcv_msg_compat()
615 (h32->nlmsg_flags & NLM_F_DUMP)) in xfrm_user_rcv_msg_compat()
618 err = nlmsg_parse_deprecated(h32, compat_msg_min[type], attrs, in xfrm_user_rcv_msg_compat()
623 len = xfrm_user_rcv_calculate_len64(h32, attrs, maxtype); in xfrm_user_rcv_msg_compat()
625 if (len == nlmsg_len(h32)) in xfrm_user_rcv_msg_compat()
633 err = xfrm_xlate32(h64, h32, attrs, len, type, maxtype, extack); in xfrm_user_rcv_msg_compat()
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress.c1329 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); in ZSTD_decompressContinue() local
1331 …TD_decompressContinue: checksum : calculated %08X :: %08X read", (unsigned)h32, (unsigned)check32); in ZSTD_decompressContinue()
1332 RETURN_ERROR_IF(check32 != h32, checksum_wrong, ""); in ZSTD_decompressContinue()