Searched refs:hc2 (Results 1 – 3 of 3) sorted by relevance
/linux-4.4.14/arch/x86/crypto/ |
D | poly1305-avx2-x86_64.S | 52 #define hc2 %ymm2 macro 179 # hc2 = [(m[54-57] >> 4) & 0x3ffffff, (m[38-41] >> 4) & 0x3ffffff, 183 vpunpcklqdq t1,hc2,hc2 187 vperm2i128 $0x20,t1,hc2,hc2 188 vpsrld $4,hc2,hc2 189 vpand ANMASK(%rip),hc2,hc2 191 vpaddd t1,hc2,hc2 224 # t1 += [ hc2[3] * s3, hc2[2] * v3, hc2[1] * x3, hc2[0] * z3 ] 225 vpmuludq hc2,svxz3,t2 245 # t1 += [ hc2[3] * s4, hc2[2] * v4, hc2[1] * x4, hc2[0] * z4 ] [all …]
|
D | poly1305-sse2-x86_64.S | 287 #define hc2 %xmm2 macro 371 # hc2 = [ (m[22-25] >> 4) & 0x3ffffff, h2 + (m[6-9] >> 4) & 0x3ffffff ] 372 movd 0x06(m),hc2 374 punpcklqdq t1,hc2 375 psrld $4,hc2 376 pand ANMASK(%rip),hc2 378 paddd t1,hc2 403 # t1 += [ hc2[1] * s3, hc2[0] * v3 ] 405 pmuludq hc2,t2 428 # t1 += [ hc2[1] * s4, hc2[0] * v4 ] [all …]
|
/linux-4.4.14/fs/gfs2/ |
D | dir.c | 1120 __be64 *hc2, *h; in dir_double_exhash() local 1131 hc2 = kmalloc(hsize_bytes * 2, GFP_NOFS | __GFP_NOWARN); in dir_double_exhash() 1132 if (hc2 == NULL) in dir_double_exhash() 1133 hc2 = __vmalloc(hsize_bytes * 2, GFP_NOFS, PAGE_KERNEL); in dir_double_exhash() 1135 if (!hc2) in dir_double_exhash() 1138 h = hc2; in dir_double_exhash() 1149 error = gfs2_dir_write_data(dip, (char *)hc2, 0, hsize_bytes * 2); in dir_double_exhash() 1154 dip->i_hash_cache = hc2; in dir_double_exhash() 1167 kvfree(hc2); in dir_double_exhash()
|