Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 20 of 20) sorted by relevance

/lib/crypto/arm/
A Dsha512-armv4.pl103 eor $t1,$t1,$Elo,lsl#18
106 eor $t1,$t1,$Ehi,lsr#18
108 eor $t1,$t1,$Elo,lsl#14
110 eor $t1,$t1,$Elo,lsr#9
124 eor $t1,$t1,$t3
128 and $t1,$t1,$Ehi
158 eor $t1,$t1,$Alo,lsl#4
160 eor $t1,$t1,$Alo,lsr#2
418 adc $t1,$Ahi,$t1
435 adc $t1,$Ahi,$t1
[all …]
A Dsha256-armv4.pl84 rev $t1,$t1
91 orr $t1,$t1,$t2,lsl#8
93 orr $t1,$t1,$t0,lsl#16
98 orr $t1,$t1,$t2,lsl#24
106 eor $t1,$f,$g
108 and $t1,$t1,$e
110 eor $t1,$t1,$g @ Ch(e,f,g)
157 add $t1,$t1,$t2
159 add $t1,$t1,$t4 @ X[i]
258 add $B,$B,$t1
[all …]
/lib/crypto/mips/
A Dpoly1305-mips.pl860 sll $t1,$t1,8
863 or $t0,$t1
878 sll $t1,$t1,8
1087 addu $t1,$t1,$a3
1092 addu $t1,$t1,$t0
1095 addu $t1,$t1,$at
1100 addu $t1,$t1,$d3
1103 addu $t1,$t1,$a3
1107 addu $t1,$t1,$t0
1110 addu $t1,$t1,$at
[all …]
A Dchacha-core.S12 #define X1 $t1
/lib/crypto/
A Dpoly1305-donna64.c17 u64 t0, t1; in poly1305_core_setkey() local
21 t1 = get_unaligned_le64(&raw_key[8]); in poly1305_core_setkey()
25 key->key.r64[2] = ((t1 >> 24)) & 0x00ffffffc0fULL; in poly1305_core_setkey()
62 u64 t0, t1; in poly1305_core_blocks() local
66 t1 = get_unaligned_le64(&input[8]); in poly1305_core_blocks()
69 h1 += ((t0 >> 44) | (t1 << 20)) & 0xfffffffffffULL; in poly1305_core_blocks()
70 h2 += (((t1 >> 24)) & 0x3ffffffffffULL) | hibit64; in poly1305_core_blocks()
118 u64 t0, t1; in poly1305_core_emit() local
166 t1 = ((u64)nonce[3] << 32) | nonce[2]; in poly1305_core_emit()
171 h1 += (((t0 >> 44) | (t1 << 20)) & 0xfffffffffffULL) + c; in poly1305_core_emit()
[all …]
A Dsha512.c83 u64 t1, t2; in sha512_block_generic() local
97 t1 = h + e1(e) + Ch(e, f, g) + sha512_K[i] + W[(i & 15)]; in sha512_block_generic()
98 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha512_block_generic()
99 t1 = g + e1(d) + Ch(d, e, f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_block_generic()
100 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha512_block_generic()
102 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha512_block_generic()
104 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha512_block_generic()
106 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha512_block_generic()
108 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha512_block_generic()
110 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; in sha512_block_generic()
[all …]
A Dcurve25519-fiat32.c563 fe t1; in fe_loose_invert() local
569 fe_sq_tt(&t1, &t0); in fe_loose_invert()
571 fe_sq_tt(&t1, &t1); in fe_loose_invert()
572 fe_mul_tlt(&t1, z, &t1); in fe_loose_invert()
575 fe_mul_ttt(&t1, &t1, &t2); in fe_loose_invert()
576 fe_sq_tt(&t2, &t1); in fe_loose_invert()
579 fe_mul_ttt(&t1, &t2, &t1); in fe_loose_invert()
591 fe_mul_ttt(&t1, &t2, &t1); in fe_loose_invert()
603 fe_mul_ttt(&t1, &t2, &t1); in fe_loose_invert()
604 fe_sq_tt(&t1, &t1); in fe_loose_invert()
[all …]
A Dsha256.c68 u32 t1, t2; \
69 t1 = h + e1(e) + Ch(e, f, g) + sha256_K[i] + W[i]; \
71 d += t1; \
72 h = t1 + t2; \
A Dcurve25519-hacl64.c628 u64 t1 = input[1]; in format_fcontract_first_carry_pass() local
632 u64 t1_ = t1 + (t0 >> 51); in format_fcontract_first_carry_pass()
656 u64 t1 = input[1]; in format_fcontract_second_carry_pass() local
660 u64 t1_ = t1 + (t0 >> 51); in format_fcontract_second_carry_pass()
719 u64 t1 = input[1]; in format_fcontract_store() local
723 u64 o0 = t1 << 51 | t0; in format_fcontract_store()
724 u64 o1 = t2 << 38 | t1 >> 13; in format_fcontract_store()
/lib/crypto/arm64/
A Dsha2-armv8.pl143 and $t1,$f,$e
146 orr $t1,$t1,$t2 // Ch(e,f,g)
156 eor $t1,$T0,$t1,ror#$Sigma0[1] // Sigma0(a)
165 and $t1,$f,$e
172 orr $t1,$t1,$t2 // Ch(e,f,g)
679 ldr $t1,[sp,#0]
694 ldr $t1,[sp,#0]
711 ldp $t0,$t1,[$ctx,#0]
715 add $B,$B,$t1
721 add $F,$F,$t1
[all …]
A Dpoly1305-armv8.pl156 rev $t1,$t1
159 adcs $h1,$h1,$t1
166 umulh $t1,$h1,$s1
170 adc $d1,$d1,$t1
180 adc $d2,$d2,$t1
184 adc $d2,$d2,$t1
249 ror $t1,$t1,#32
252 adc $h1,$h1,$t1
284 adc $d1,$d1,$t1
294 adc $d2,$d2,$t1
[all …]
A Dsha256-ce.S20 t1 .req v23
32 add t1.4s, v\s0\().4s, \rc\().4s
39 sha256h dg0q, dg1q, t1.4s
40 sha256h2 dg1q, dg2q, t1.4s
A Dsha1-ce-core.S20 t1 .req v5
36 add t1.4s, v\s0\().4s, \rc\().4s
48 sha1\op dg0q, dg2s, t1.4s
/lib/crypto/x86/
A Dsha256-avx2-asm.S192 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
196 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
197 add y3, h # h = t1 + S0 + MAJ # --
245 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
246 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
247 add y3, h # h = t1 + S0 + MAJ # --
295 add y2,d # d = k + w + h + d + S1 + CH = d + t1 # --
296 add y2,h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
298 add y3,h # h = t1 + S0 + MAJ # --
336 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
[all …]
A Dsha512-avx2-asm.S211 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
213 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
214 add y3, h # h = t1 + S0 + MAJ # --
276 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
277 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
278 add y3, h # h = t1 + S0 + MAJ # --
332 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
333 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# --
335 add y3, h # h = t1 + S0 + MAJ # --
383 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # --
[all …]
A Dsha1-ssse3-and-avx.S261 \F \b, \c, \d # t1 = F(b, c, d);
/lib/tests/
A Doverflow_kunit.c48 #define DEFINE_TEST_ARRAY_TYPED(t1, t2, t) \ argument
49 static const struct test_ ## t1 ## _ ## t2 ## __ ## t { \
50 t1 a; \
54 } t1 ## _ ## t2 ## __ ## t ## _tests[]
811 __t1 t1 = (v); \ in overflows_type_test()
1013 #define TEST_SAME_TYPE(t1, t2, same) do { \ in same_type_test() argument
1014 typeof(t1) __t1h = type_max(t1); \ in same_type_test()
1015 typeof(t1) __t1l = type_min(t1); \ in same_type_test()
1018 KUNIT_EXPECT_EQ(test, true, __same_type(t1, __t1h)); \ in same_type_test()
1019 KUNIT_EXPECT_EQ(test, true, __same_type(t1, __t1l)); \ in same_type_test()
[all …]
/lib/
A Dlwq.c103 struct llist_node *l, **t1, *t2; in lwq_test() local
139 lwq_for_each_safe(t, t1, t2, &l, n) { in lwq_test()
/lib/crypto/riscv/
A Dchacha-riscv64-zvkb.S59 #define TMP t1
/lib/zstd/compress/
A Dzstd_lazy.c1032 const uint8x8_t t1 = vshrn_n_u16(vreinterpretq_u16_u8(vceqq_u8(chunk1, dup)), 6); in ZSTD_row_getNEONMask() local
1033 const uint8x8_t res = vsli_n_u8(t0, t1, 4); in ZSTD_row_getNEONMask()
1045 const uint8x16_t t1 = vsriq_n_u8(cmp3, cmp2, 1); in ZSTD_row_getNEONMask() local
1046 const uint8x16_t t2 = vsriq_n_u8(t1, t0, 2); in ZSTD_row_getNEONMask()

Completed in 250 milliseconds