Home
last modified time | relevance | path

Searched refs:T3 (Results 1 – 19 of 19) sorted by relevance

/linux-4.4.14/arch/x86/crypto/
Dghash-clmulni-intel_asm.S32 #define T3 %xmm4 macro
53 pshufd $0b01001110, SHASH, T3
55 pxor SHASH, T3
59 PCLMULQDQ 0x00 T3 T2 # T2 = (a1 + a0) * (b1 + b0)
63 movaps T2, T3
64 pslldq $8, T3
66 pxor T3, DATA
71 movaps DATA, T3
72 psllq $1, T3
73 pxor DATA, T3
[all …]
Daesni-intel_avx-x86_64.S251 .macro GHASH_MUL_AVX GH HK T1 T2 T3 T4 T5
254 vpshufd $0b01001110, \HK, \T3
256 vpxor \HK , \T3, \T3 # T3 = (b1+b0)
260 vpclmulqdq $0x00, \T3, \T2, \T2 # T2 = (a1+a0)*(b1+b0)
264 vpslldq $8, \T2,\T3 # shift-L T3 2 DWs
266 vpxor \T3, \GH, \GH
271 vpslld $30, \GH, \T3 # packed right shifting shift << 30
274 vpxor \T3, \T2, \T2 # xor the shifted versions
285 vpsrld $2,\GH, \T3 # packed left shifting >> 2
287 vpxor \T3, \T2, \T2 # xor the shifted versions
[all …]
/linux-4.4.14/crypto/
Danubis.c253 static const u32 T3[256] = { variable
545 inter[i] ^= T3[(kappa[j ] ) & 0xff]; in anubis_setkey()
567 T3[T4[(v ) & 0xff] & 0xff]; in anubis_setkey()
599 T3[(state[3] >> 24) ] ^ in anubis_crypt()
605 T3[(state[3] >> 16) & 0xff] ^ in anubis_crypt()
611 T3[(state[3] >> 8) & 0xff] ^ in anubis_crypt()
617 T3[(state[3] ) & 0xff] ^ in anubis_crypt()
633 (T3[(state[3] >> 24) ] & 0x000000ffU) ^ in anubis_crypt()
639 (T3[(state[3] >> 16) & 0xff] & 0x000000ffU) ^ in anubis_crypt()
645 (T3[(state[3] >> 8) & 0xff] & 0x000000ffU) ^ in anubis_crypt()
[all …]
Dkhazad.c305 static const u64 T3[256] = { variable
774 T3[(int)(K1 >> 32) & 0xff] ^ in khazad_setkey()
790 T3[(int)S[(int)(K1 >> 32) & 0xff] & 0xff] ^ in khazad_setkey()
816 T3[(int)(state >> 32) & 0xff] ^ in khazad_crypt()
827 (T3[(int)(state >> 32) & 0xff] & 0x000000ff00000000ULL) ^ in khazad_crypt()
Ddes_generic.c614 #define T3(x) pt[2 * (x) + 2] macro
617 #define DES_PC2(a, b, c, d) (T4(d) | T3(c) | T2(b) | T1(a))
/linux-4.4.14/drivers/block/drbd/
Ddrbd_state.h44 #define NS3(T1, S1, T2, S2, T3, S3) \ argument
46 mask.T2 = T2##_MASK; mask.T3 = T3##_MASK; mask; }), \
48 val.T2 = (S2); val.T3 = (S3); val; })
55 #define _NS3(D, T1, S1, T2, S2, T3, S3) \ argument
57 __ns.T2 = (S2); __ns.T3 = (S3); __ns; })
/linux-4.4.14/arch/sparc/crypto/
Daes_asm.S12 #define ENCRYPT_TWO_ROUNDS_2(KEY_BASE, I0, I1, I2, I3, T0, T1, T2, T3) \ argument
16 AES_EROUND23(KEY_BASE + 2, I2, I3, T3) \
19 AES_EROUND01(KEY_BASE + 4, T2, T3, I2) \
20 AES_EROUND23(KEY_BASE + 6, T2, T3, I3)
28 #define ENCRYPT_TWO_ROUNDS_LAST_2(KEY_BASE, I0, I1, I2, I3, T0, T1, T2, T3) \ argument
32 AES_EROUND23(KEY_BASE + 2, I2, I3, T3) \
35 AES_EROUND01_L(KEY_BASE + 4, T2, T3, I2) \
36 AES_EROUND23_L(KEY_BASE + 6, T2, T3, I3)
46 #define ENCRYPT_128_2(KEY_BASE, I0, I1, I2, I3, T0, T1, T2, T3) \ argument
47 ENCRYPT_TWO_ROUNDS_2(KEY_BASE + 0, I0, I1, I2, I3, T0, T1, T2, T3) \
[all …]
/linux-4.4.14/arch/mips/mm/
Dpage.c49 #define T3 11 macro
473 build_copy_load(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
481 build_copy_store(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
495 build_copy_load(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
505 build_copy_store(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
518 build_copy_load(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
526 build_copy_store(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
536 build_copy_load(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
547 build_copy_store(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
560 build_copy_load(&buf, T3, off + 3 * copy_word_size); in build_copy_page()
[all …]
/linux-4.4.14/drivers/scsi/cxgbi/cxgb3i/
DKconfig2 tristate "Chelsio T3 iSCSI support"
10 This driver supports iSCSI offload for the Chelsio T3 devices.
/linux-4.4.14/arch/arm/crypto/
Dsha256-armv4.pl285 my ($T0,$T1,$T2,$T3,$T4,$T5)=("q8","q9","q10","q11","d24","d25");
325 &vshr_u32 ($T3,$T0,$sigma0[1]);
331 &vsli_32 ($T3,$T0,32-$sigma0[1]);
337 &veor ($T1,$T1,$T3); # sigma0(X[1..4])
479 vld1.32 {$T3},[$Ktbl,:128]!
494 vadd.i32 $T3,$T3,@X[3]
496 vst1.32 {$T3},[$Xfer,:128]!
/linux-4.4.14/arch/x86/crypto/sha-mb/
Dsha1_x8_avx2.S234 # ymm9 T3 EE
252 T3 = %ymm9 define
333 VMOVPS (inp3, IDX), T3
339 TRANSPOSE8 T0, T1, T2, T3, T4, T5, T6, T7, T8, T9
346 vpshufb F, T3, T3
347 vmovdqu T3, (I*8+3)*32(%rsp)
/linux-4.4.14/drivers/infiniband/hw/cxgb3/
DKconfig6 This is an iWARP/RDMA driver for the Chelsio T3 1GbE and
/linux-4.4.14/drivers/iio/pressure/
Dbmp280.c87 enum { T1, T2, T3 }; enumerator
174 ((s32)(s16)le16_to_cpu(buf[T3]))) >> 14; in bmp280_compensate_temp()
/linux-4.4.14/drivers/net/ethernet/chelsio/
DKconfig48 tristate "Chelsio Communications T3 10Gb Ethernet support"
53 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
/linux-4.4.14/arch/metag/tbx/
Dtbictx.S177 D SETD [A0.2++],T3
345 D GETD T3,[A0.2++]
/linux-4.4.14/Documentation/scsi/
Dcxgb3i.txt6 The Chelsio T3 ASIC based Adapters (S310, S320, S302, S304, Mezz cards, etc.
/linux-4.4.14/drivers/net/wan/
DKconfig63 tristate "LanMedia Corp. SSI/V.35, T1/E1, HSSI, T3 boards"
78 - LMC 5245 board connects directly to a T3 circuit saving the
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4vf/
Dcxgb4vf_main.c1903 #define T3(fmt, s, v) S3(fmt, s, txq[qs].v) in sge_qstats_show() macro
1904 #define T(s, v) T3("lu", s, v) in sge_qstats_show()
1961 #undef T3 in sge_qstats_show()
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_debugfs.c2270 #define T3(fmt_spec, s, v) S3(fmt_spec, s, tx[i].v) in sge_qinfo_show() macro
2272 #define TL(s, v) T3("lu", s, v) in sge_qinfo_show()
2443 #undef T3 in sge_qinfo_show()