Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 25 of 124) sorted by relevance

12345

/linux/arch/arm64/crypto/
H A Dsm4-ce-asm.h28 #define SM4_CRYPT_BLK2_BE(b0, b1) \ argument
30 sm4e b1.4s, v24.4s; \
32 sm4e b1.4s, v25.4s; \
34 sm4e b1.4s, v26.4s; \
36 sm4e b1.4s, v27.4s; \
38 sm4e b1.4s, v28.4s; \
40 sm4e b1.4s, v29.4s; \
42 sm4e b1.4s, v30.4s; \
44 sm4e b1.4s, v31.4s; \
46 rev64 b1.4s, b1.4s; \
[all …]
H A Dsm4-neon-core.S131 #define SM4_CRYPT_BLK4_BE(b0, b1, b2, b3) \ argument
137 ROUND4(0, b0, b1, b2, b3); \
138 ROUND4(1, b1, b2, b3, b0); \
139 ROUND4(2, b2, b3, b0, b1); \
140 ROUND4(3, b3, b0, b1, b2); \
145 rev32 b1.16b, b1.16b; \
149 rotate_clockwise_4x4(b0, b1, b2, b3); \
154 #define SM4_CRYPT_BLK4(b0, b1, b2, b3) \ argument
156 rev32 b1.16b, b1.16b; \
159 SM4_CRYPT_BLK4_BE(b0, b1, b2, b3);
[all …]
H A Daes-neonbs-core.S26 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7
27 eor \b2, \b2, \b1
38 eor \b3, \b3, \b1
39 eor \b1, \b1, \b5
42 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7
44 eor \b1, \b1, \b4
47 eor \b6, \b6, \b1
48 eor \b1, \b1, \b5
56 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5
57 eor \b1, \b1, \b7
[all …]
H A Dsm4-ce-gcm-core.S133 #define SM4_CRYPT_PMUL_128x128_BLK3(b0, b1, b2, \ argument
138 rev32 b1.16b, b1.16b; \
144 sm4e b1.4s, v24.4s; \
150 sm4e b1.4s, v25.4s; \
156 sm4e b1.4s, v26.4s; \
162 sm4e b1.4s, v27.4s; \
168 sm4e b1.4s, v28.4s; \
174 sm4e b1.4s, v29.4s; \
180 sm4e b1.4s, v30.4s; \
186 sm4e b1.4s, v31.4s; \
[all …]
/linux/arch/arm/nwfpe/
H A Dsoftfloat-macros339 value formed by concatenating `b0' and `b1'. Addition is modulo 2^128, so
346 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
350 z1 = a1 + b1;
359 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
371 bits64 b1,
383 z1 = a1 + b1;
397 Subtracts the 128-bit value formed by concatenating `b0' and `b1' from the
406 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr )
409 *z1Ptr = a1 - b1;
410 *z0Ptr = a0 - b0 - ( a1 < b1 );
[all …]
/linux/tools/mm/
H A Dslabinfo.c809 char b1[20], b2[20], b3[20], b4[20]; in totals() local
985 store_size(b1, total_size);store_size(b2, total_waste); in totals()
987 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1, b2, b3); in totals()
989 store_size(b1, total_objects);store_size(b2, total_partobj); in totals()
991 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1, b2, b3); in totals()
999 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
1002 b1, b2, b3, b4); in totals()
1004 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals()
1007 b1, b2, b3, b4); in totals()
1009 store_size(b1, avg_partia in totals()
[all...]
/linux/lib/crypto/riscv/
H A Dchacha-riscv64-zvkb.S77 .macro chacha_round a0, b0, c0, d0, a1, b1, c1, d1, \
81 vadd.vv \a1, \a1, \b1
99 vxor.vv \b1, \b1, \c1
103 vror.vi \b1, \b1, 32 - 12
109 vadd.vv \a1, \a1, \b1
127 vxor.vv \b1, \b1, \c1
131 vror.vi \b1, \b1, 32 - 7
/linux/arch/powerpc/kernel/vdso/
H A Dvgetrandom-chacha.S52 .macro quarterround4 a1 b1 c1 d1 a2 b2 c2 d2 a3 b3 c3 d3 a4 b4 c4 d4
53 add \a1, \a1, \b1
69 xor \b1, \b1, \c1
73 rotlwi \b1, \b1, 12
77 add \a1, \a1, \b1
93 xor \b1, \b1, \c1
97 rotlwi \b1, \b1, 7
103 #define QUARTERROUND4(a1,b1,c1,d1,a2,b2,c2,d2,a3,b3,c3,d3,a4,b4,c4,d4) \ argument
104 quarterround4 state##a1 state##b1 state##c1 state##d1 \
/linux/rust/quote/
H A Dlib.rs700 ($call:ident! $extra:tt ($($b1:tt)*) ($($curr:tt)*)) => {
702 $crate::pounded_var_with_context!{$call! $extra $b1 $curr}
710 ($call:ident! $extra:tt $b1:tt ( $($inner:tt)* )) => {
714 ($call:ident! $extra:tt $b1:tt [ $($inner:tt)* ]) => {
718 ($call:ident! $extra:tt $b1:tt { $($inner:tt)* }) => {
726 ($call:ident! $extra:tt $b1:tt $curr:tt) => {};
857 ($($b3:tt)*) ($($b2:tt)*) ($($b1:tt)*)
862 $crate::quote_token_with_context!{$tokens $b3 $b2 $b1 $curr $a1 $a2 $a3}
872 ($($b3:tt)*) ($($b2:tt)*) ($($b1:tt)*)
877 $crate::quote_token_with_context_spanned!{$tokens $span $b3 $b2 $b1 $curr $a1 $a2 $a3}
[all …]
/linux/arch/arm/crypto/
H A Daes-neonbs-core.S80 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7
81 veor \b2, \b2, \b1
92 veor \b3, \b3, \b1
93 veor \b1, \b1, \b5
96 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7
98 veor \b1, \b1, \b4
101 veor \b6, \b6, \b1
102 veor \b1, \b1, \b5
110 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5
111 veor \b1, \b1, \b7
[all …]
/linux/arch/xtensa/platforms/iss/include/platform/
H A Dsimcall-iss.h61 register int b1 asm("a3") = b; in __simc()
66 : "+r"(a1), "+r"(b1) in __simc()
69 errno = b1; in __simc()
H A Dsimcall-gdbio.h22 register int b1 asm("a6") = b; in __simc()
28 : "r"(b1), "r"(d1) in __simc()
/linux/scripts/
H A Dparse-maintainers.pl79 my $b1 = uc(substr($b, 0, 1));
82 my $b_index = index($preferred_order, $b1);
87 if (($a1 =~ /^F$/ && $b1 =~ /^F$/) ||
88 ($a1 =~ /^X$/ && $b1 =~ /^X$/)) {
/linux/arch/x86/crypto/
H A Dcast6-avx-x86_64-asm_64.S129 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument
130 F_head(b1, RX, RGI1, RGI2, op0); \
133 F_tail(b1, RX, RGI1, RGI2, op1, op2, op3); \
139 #define F1_2(a1, b1, a2, b2) \ argument
140 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl)
141 #define F2_2(a1, b1, a2, b2) \ argument
142 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl)
143 #define F3_2(a1, b1, a2, b2) \ argument
144 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl)
H A Daria-gfni-avx512-asm_64.S67 a1, b1, c1, d1, \ argument
74 transpose_4x4(b0, b1, b2, b3, d2, d3); \
88 vpshufb a0, b1, b1; \
106 transpose_4x4(a1, b1, c1, d1, d2, d3); \
111 vmovdqu64 b1, st1; \
112 transpose_4x4(a2, b2, c2, d2, b0, b1); \
113 transpose_4x4(a3, b3, c3, d3, b0, b1); \
115 vmovdqu64 st1, b1; \
119 a1, b1, c1, d1, \ argument
126 transpose_4x4(b0, b1, b2, b3, d2, d3); \
[all …]
/linux/drivers/mtd/nand/
H A Decc-sw-hamming.c378 unsigned char b0, b1, b2, bit_addr; in ecc_sw_hamming_correct() local
388 b1 = read_ecc[1] ^ calc_ecc[1]; in ecc_sw_hamming_correct()
391 b1 = read_ecc[0] ^ calc_ecc[0]; in ecc_sw_hamming_correct()
401 if ((b0 | b1 | b2) == 0) in ecc_sw_hamming_correct()
405 (((b1 ^ (b1 >> 1)) & 0x55) == 0x55) && in ecc_sw_hamming_correct()
426 byte_addr = (addressbits[b1] << 4) + addressbits[b0]; in ecc_sw_hamming_correct()
429 (addressbits[b1] << 4) + addressbits[b0]; in ecc_sw_hamming_correct()
437 if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1) in ecc_sw_hamming_correct()
/linux/lib/crypto/arm/
H A Dblake2s-core.S71 .macro _blake2s_quarterround a0, b0, c0, d0, a1, b1, c1, d1, s0, s1, s2, s3
78 add \a1, \a1, \b1, ror #brot
92 eor \b1, \c1, \b1, ror #brot
99 add \a1, \a1, \b1, ror #12
113 eor \b1, \c1, \b1, ror#12
/linux/Documentation/translations/zh_CN/arch/arm64/
H A Dbooting.txt193 ICC_SRE_EL3.Enable (位 3) 必须初始化为 0b1
194 ICC_SRE_EL3.SRE (位 0) 必须初始化为 0b1
196 ICC_SRE_EL2.Enable (位 3) 必须初始化为 0b1
197 ICC_SRE_EL2.SRE (位 0) 必须初始化为 0b1
/linux/lib/crypto/
H A Dcurve25519-hacl64.c303 u64 *b1; in crecip_crecip() local
317 b1 = buf + 10; in crecip_crecip()
319 fmul_fmul(b1, t01, b1); in crecip_crecip()
320 fsquare_fsquare_times(t01, b1, 10); in crecip_crecip()
321 fmul_fmul(c0, t01, b1); in crecip_crecip()
325 fmul_fmul(b1, t01, b1); in crecip_crecip()
326 fsquare_fsquare_times(t01, b1, 50); in crecip_crecip()
353 u64 b1; in fdifference() local
359 b1 = tmp[1]; in fdifference()
364 tmp[1] = b1 + 0x3ffffffffffff8LLU; in fdifference()
[all …]
/linux/Documentation/translations/zh_TW/arch/arm64/
H A Dbooting.txt197 ICC_SRE_EL3.Enable (位 3) 必須初始化爲 0b1
198 ICC_SRE_EL3.SRE (位 0) 必須初始化爲 0b1
200 ICC_SRE_EL2.Enable (位 3) 必須初始化爲 0b1
201 ICC_SRE_EL2.SRE (位 0) 必須初始化爲 0b1
/linux/tools/testing/selftests/hid/tests/
H A Dtest_gamepad.py71 b1 = uhdev.buttons[0]
72 key1 = libevdev.evbit(uhdev.buttons_map[b1])
76 buttons = {b1: True, b2: True}
88 buttons = {b1: False, b2: None}
97 buttons = {b1: None, b2: False}
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_core_reloc_misc.c26 int b1; member
48 CORE_READ(&out->b, &in_b->b1)) /* accessor: 0:0 */ in test_core_misc()
/linux/drivers/media/dvb-frontends/
H A Dlgs8gl5.c85 u8 b1[] = {0}; in lgs8gl5_read_reg() local
96 .buf = b1, in lgs8gl5_read_reg()
105 return b1[0]; in lgs8gl5_read_reg()
125 u8 b1[] = {0}; in lgs8gl5_update_alt_reg() local
137 .buf = b1, in lgs8gl5_update_alt_reg()
H A Ddvb-pll.c785 u8 *b1; in dvb_pll_attach() local
792 b1 = kmalloc(1, GFP_KERNEL); in dvb_pll_attach()
793 if (!b1) in dvb_pll_attach()
796 b1[0] = 0; in dvb_pll_attach()
797 msg.buf = b1; in dvb_pll_attach()
801 kfree(b1); in dvb_pll_attach()
860 kfree(b1); in dvb_pll_attach()
864 kfree(b1); in dvb_pll_attach()
H A Dtda826x.c133 u8 b1 [] = { 0, 0 }; in tda826x_attach() local
136 { .addr = addr, .flags = I2C_M_RD, .buf = b1, .len = 2 } in tda826x_attach()
150 if (!(b1[1] & 0x80)) in tda826x_attach()

12345