Searched refs:hc2 (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/arch/x86/crypto/ |
D | poly1305-avx2-x86_64.S | 54 #define hc2 %ymm2 macro 181 # hc2 = [(m[54-57] >> 4) & 0x3ffffff, (m[38-41] >> 4) & 0x3ffffff, 185 vpunpcklqdq t1,hc2,hc2 189 vperm2i128 $0x20,t1,hc2,hc2 190 vpsrld $4,hc2,hc2 191 vpand ANMASK(%rip),hc2,hc2 193 vpaddd t1,hc2,hc2 226 # t1 += [ hc2[3] * s3, hc2[2] * v3, hc2[1] * x3, hc2[0] * z3 ] 227 vpmuludq hc2,svxz3,t2 247 # t1 += [ hc2[3] * s4, hc2[2] * v4, hc2[1] * x4, hc2[0] * z4 ] [all …]
|
D | poly1305-sse2-x86_64.S | 289 #define hc2 %xmm2 macro 373 # hc2 = [ (m[22-25] >> 4) & 0x3ffffff, h2 + (m[6-9] >> 4) & 0x3ffffff ] 374 movd 0x06(m),hc2 376 punpcklqdq t1,hc2 377 psrld $4,hc2 378 pand ANMASK(%rip),hc2 380 paddd t1,hc2 405 # t1 += [ hc2[1] * s3, hc2[0] * v3 ] 407 pmuludq hc2,t2 430 # t1 += [ hc2[1] * s4, hc2[0] * v4 ] [all …]
|
/Linux-v4.19/fs/gfs2/ |
D | dir.c | 1159 __be64 *hc2, *h; in dir_double_exhash() local 1170 hc2 = kmalloc_array(hsize_bytes, 2, GFP_NOFS | __GFP_NOWARN); in dir_double_exhash() 1171 if (hc2 == NULL) in dir_double_exhash() 1172 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS, PAGE_KERNEL); in dir_double_exhash() 1174 if (!hc2) in dir_double_exhash() 1177 h = hc2; in dir_double_exhash() 1188 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2); in dir_double_exhash() 1193 dip->i_hash_cache = hc2; in dir_double_exhash() 1206 kvfree(hc2); in dir_double_exhash()
|