Home
last modified time | relevance | path

Searched refs:h1 (Results 1 – 6 of 6) sorted by relevance

/linux-4.19.296/lib/
Dtest_hash.c71 u32 h0 = (u32)h64, h1, h2; in test_int_hash() local
74 hash_or[0][0] |= h1 = __hash_32(h0); in test_int_hash()
78 if (h1 != h2) { in test_int_hash()
80 h0, h1, h2); in test_int_hash()
91 hash_or[0][k] |= h1 = hash_32(h0, k); in test_int_hash()
92 if (h1 > m) { in test_int_hash()
93 pr_err("hash_32(%#x, %d) = %#x > %#x", h0, k, h1, m); in test_int_hash()
99 if (h1 != h2) { in test_int_hash()
101 " = %#x", h0, k, h1, h2); in test_int_hash()
107 h0, k, h1, m); in test_int_hash()
[all …]
/linux-4.19.296/crypto/
Dpoly1305_generic.c100 u32 h0, h1, h2, h3, h4; in poly1305_blocks() local
122 h1 = dctx->h[1]; in poly1305_blocks()
131 h1 += (get_unaligned_le32(src + 3) >> 2) & 0x3ffffff; in poly1305_blocks()
137 d0 = mlt(h0, r0) + mlt(h1, s4) + mlt(h2, s3) + in poly1305_blocks()
139 d1 = mlt(h0, r1) + mlt(h1, r0) + mlt(h2, s4) + in poly1305_blocks()
141 d2 = mlt(h0, r2) + mlt(h1, r1) + mlt(h2, r0) + in poly1305_blocks()
143 d3 = mlt(h0, r3) + mlt(h1, r2) + mlt(h2, r1) + in poly1305_blocks()
145 d4 = mlt(h0, r4) + mlt(h1, r3) + mlt(h2, r2) + in poly1305_blocks()
150 d2 += sr(d1, 26); h1 = and(d1, 0x3ffffff); in poly1305_blocks()
154 h1 += h0 >> 26; h0 = h0 & 0x3ffffff; in poly1305_blocks()
[all …]
/linux-4.19.296/drivers/media/common/saa7146/
Dsaa7146_i2c.c30 int h1, h2; in saa7146_i2c_msg_prepare() local
61 h1 = op_count/3; h2 = op_count%3; in saa7146_i2c_msg_prepare()
62 op[h1] |= cpu_to_le32( (u8)addr << ((3-h2)*8)); in saa7146_i2c_msg_prepare()
63 op[h1] |= cpu_to_le32(SAA7146_I2C_START << ((3-h2)*2)); in saa7146_i2c_msg_prepare()
69 h1 = op_count/3; h2 = op_count%3; in saa7146_i2c_msg_prepare()
70 op[h1] |= cpu_to_le32( (u32)((u8)m[i].buf[j]) << ((3-h2)*8)); in saa7146_i2c_msg_prepare()
71 op[h1] |= cpu_to_le32( SAA7146_I2C_CONT << ((3-h2)*2)); in saa7146_i2c_msg_prepare()
79 h1 = (op_count-1)/3; h2 = (op_count-1)%3; in saa7146_i2c_msg_prepare()
80 if ( SAA7146_I2C_CONT == (0x3 & (le32_to_cpu(op[h1]) >> ((3-h2)*2))) ) { in saa7146_i2c_msg_prepare()
81 op[h1] &= ~cpu_to_le32(0x2 << ((3-h2)*2)); in saa7146_i2c_msg_prepare()
[all …]
/linux-4.19.296/fs/reiserfs/
Dhashes.c31 b1 = h1; \
41 h1 += b1; \
48 u32 h0 = k[0], h1 = k[1]; in keyed_hash() local
121 return h0 ^ h1; in keyed_hash()
/linux-4.19.296/include/linux/
Dif_vlan.h737 static inline unsigned long compare_vlan_header(const struct vlan_hdr *h1, in compare_vlan_header() argument
741 return *(u32 *)h1 ^ *(u32 *)h2; in compare_vlan_header()
743 return ((__force u32)h1->h_vlan_TCI ^ (__force u32)h2->h_vlan_TCI) | in compare_vlan_header()
744 ((__force u32)h1->h_vlan_encapsulated_proto ^ in compare_vlan_header()
Dvmw_vmci_defs.h145 static inline bool vmci_handle_is_equal(struct vmci_handle h1, in vmci_handle_is_equal() argument
148 return h1.context == h2.context && h1.resource == h2.resource; in vmci_handle_is_equal()