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

/linux-master/lib/
H A Dxxhash.c106 uint32_t h32; local
126 h32 = xxh_rotl32(v1, 1) + xxh_rotl32(v2, 7) +
129 h32 = seed + PRIME32_5;
132 h32 += (uint32_t)len;
135 h32 += get_unaligned_le32(p) * PRIME32_3;
136 h32 = xxh_rotl32(h32, 17) * PRIME32_4;
141 h32 += (*p) * PRIME32_5;
142 h32 = xxh_rotl32(h32, 1
344 uint32_t h32; local
[all...]
/linux-master/net/xfrm/
H A Dxfrm_compat.c583 static struct nlmsghdr *xfrm_user_rcv_msg_compat(const struct nlmsghdr *h32, argument
588 u16 type = h32->nlmsg_type - XFRM_MSG_BASE;
600 if ((h32->nlmsg_type == XFRM_MSG_GETSA ||
601 h32->nlmsg_type == XFRM_MSG_GETPOLICY) &&
602 (h32->nlmsg_flags & NLM_F_DUMP))
605 err = nlmsg_parse_deprecated(h32, compat_msg_min[type], attrs,
610 len = xfrm_user_rcv_calculate_len64(h32, attrs, maxtype);
612 if (len == nlmsg_len(h32))
620 err = xfrm_xlate32(h64, h32, attrs, len, type, maxtype, extack);
/linux-master/lib/zstd/decompress/
H A Dzstd_decompress.c1239 U32 const h32 = (U32)xxh64_digest(&dctx->xxhState); local
1241 DEBUGLOG(4, "ZSTD_decompressContinue: checksum : calculated %08X :: %08X read", (unsigned)h32, (unsigned)check32);
1242 RETURN_ERROR_IF(check32 != h32, checksum_wrong, "");

Completed in 358 milliseconds