/Linux-v5.15/crypto/ |
D | aes_generic.c | 1179 u32 b0[4], b1[4]; in crypto_aes_encrypt() local 1189 f_nround(b1, b0, kp); in crypto_aes_encrypt() 1190 f_nround(b0, b1, kp); in crypto_aes_encrypt() 1194 f_nround(b1, b0, kp); in crypto_aes_encrypt() 1195 f_nround(b0, b1, kp); in crypto_aes_encrypt() 1198 f_nround(b1, b0, kp); in crypto_aes_encrypt() 1199 f_nround(b0, b1, kp); in crypto_aes_encrypt() 1200 f_nround(b1, b0, kp); in crypto_aes_encrypt() 1201 f_nround(b0, b1, kp); in crypto_aes_encrypt() 1202 f_nround(b1, b0, kp); in crypto_aes_encrypt() [all …]
|
D | xor.c | 83 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument 99 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed() 121 void *b1, *b2; in calibrate_xor_blocks() local 133 b1 = (void *) __get_free_pages(GFP_KERNEL, 2); in calibrate_xor_blocks() 134 if (!b1) { in calibrate_xor_blocks() 138 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks() 145 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks() 160 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()
|
/Linux-v5.15/drivers/atm/ |
D | fore200e.h | 71 #define BITFIELD2(b1, b2) b1; b2; argument 72 #define BITFIELD3(b1, b2, b3) b1; b2; b3; argument 73 #define BITFIELD4(b1, b2, b3, b4) b1; b2; b3; b4; argument 74 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5; argument 75 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b3; b4; b5; b6; argument 77 #define BITFIELD2(b1, b2) b2; b1; argument 78 #define BITFIELD3(b1, b2, b3) b3; b2; b1; argument 79 #define BITFIELD4(b1, b2, b3, b4) b4; b3; b2; b1; argument 80 #define BITFIELD5(b1, b2, b3, b4, b5) b5; b4; b3; b2; b1; argument 81 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b6; b5; b4; b3; b2; b1; argument
|
/Linux-v5.15/drivers/isdn/mISDN/ |
D | dsp_biquad.h | 19 int32_t b1; member 27 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() argument 32 bq->b1 = b1; in biquad2_init() 45 y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2; in biquad2()
|
/Linux-v5.15/fs/f2fs/ |
D | hash.c | 28 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local 34 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform() 35 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform() 39 buf[1] += b1; in TEA_transform()
|
/Linux-v5.15/arch/arm/include/asm/ |
D | xor.h | 26 : "=r" (src), "=r" (b1), "=r" (b2) \ 28 __XOR(a1, b1); __XOR(a2, b2); 32 : "=r" (src), "=r" (b1), "=r" (b2), "=r" (b3), "=r" (b4) \ 34 __XOR(a1, b1); __XOR(a2, b2); __XOR(a3, b3); __XOR(a4, b4) 54 register unsigned int b1 __asm__("r8"); in xor_arm4regs_2() 75 register unsigned int b1 __asm__("r8"); in xor_arm4regs_3() 95 register unsigned int b1 __asm__("ip"); in xor_arm4regs_4() 114 register unsigned int b1 __asm__("ip"); in xor_arm4regs_5()
|
/Linux-v5.15/arch/s390/net/ |
D | bpf_jit_comp.c | 111 static inline void reg_set_seen(struct bpf_jit *jit, u32 b1) in reg_set_seen() argument 113 u32 r1 = reg2hex[b1]; in reg_set_seen() 119 #define REG_SET_SEEN(b1) \ argument 121 reg_set_seen(jit, b1); \ 124 #define REG_SEEN(b1) jit->seen_reg[reg2hex[(b1)]] argument 137 #define EMIT2(op, b1, b2) \ argument 139 _EMIT2((op) | reg(b1, b2)); \ 140 REG_SET_SEEN(b1); \ 151 #define EMIT4(op, b1, b2) \ argument 153 _EMIT4((op) | reg(b1, b2)); \ [all …]
|
/Linux-v5.15/fs/reiserfs/ |
D | hashes.c | 28 u32 b0, b1; \ 31 b1 = h1; \ 36 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); \ 37 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); \ 41 h1 += b1; \
|
/Linux-v5.15/block/ |
D | blk-integrity.c | 123 struct blk_integrity *b1 = &gd1->queue->integrity; in blk_integrity_compare() local 126 if (!b1->profile && !b2->profile) in blk_integrity_compare() 129 if (!b1->profile || !b2->profile) in blk_integrity_compare() 132 if (b1->interval_exp != b2->interval_exp) { in blk_integrity_compare() 135 1 << b1->interval_exp, 1 << b2->interval_exp); in blk_integrity_compare() 139 if (b1->tuple_size != b2->tuple_size) { in blk_integrity_compare() 142 b1->tuple_size, b2->tuple_size); in blk_integrity_compare() 146 if (b1->tag_size && b2->tag_size && (b1->tag_size != b2->tag_size)) { in blk_integrity_compare() 149 b1->tag_size, b2->tag_size); in blk_integrity_compare() 153 if (b1->profile != b2->profile) { in blk_integrity_compare() [all …]
|
/Linux-v5.15/tools/vm/ |
D | slabinfo.c | 782 char b1[20], b2[20], b3[20], b4[20]; in totals() local 958 store_size(b1, total_size);store_size(b2, total_waste); in totals() 960 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1, b2, b3); in totals() 962 store_size(b1, total_objects);store_size(b2, total_partobj); in totals() 964 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1, b2, b3); in totals() 972 store_size(b1, avg_objects);store_size(b2, min_objects); in totals() 975 b1, b2, b3, b4); in totals() 977 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals() 980 b1, b2, b3, b4); in totals() 982 store_size(b1, avg_partial);store_size(b2, min_partial); in totals() [all …]
|
/Linux-v5.15/drivers/crypto/nx/ |
D | nx-aes-ccm.c | 167 u8 tmp[16], *b1 = NULL, *b0 = NULL, *result = NULL; in generate_pat() local 195 b1 = nx_ctx->priv.ccm.iauth_tag; in generate_pat() 202 b1 = nx_ctx->csbcpb_aead->cpb.aes_cca.b1; in generate_pat() 206 b1 = nx_ctx->csbcpb_aead->cpb.aes_cca.b1; in generate_pat() 219 if (b1) { in generate_pat() 220 memset(b1, 0, 16); in generate_pat() 222 *(u16 *)b1 = assoclen; in generate_pat() 223 scatterwalk_map_and_copy(b1 + 2, req->src, 0, in generate_pat() 226 *(u16 *)b1 = (u16)(0xfffe); in generate_pat() 227 *(u32 *)&b1[2] = assoclen; in generate_pat() [all …]
|
/Linux-v5.15/arch/arm/nwfpe/ |
D | softfloat-macros | 339 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-v5.15/arch/arm/crypto/ |
D | aes-neonbs-core.S | 80 .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 …]
|
D | blake2s-core.S | 68 .macro _blake2s_quarterround a0, b0, c0, d0, a1, b1, c1, d1, s0, s1, s2, s3 75 add \a1, \a1, \b1, ror #brot 89 eor \b1, \c1, \b1, ror #brot 96 add \a1, \a1, \b1, ror #12 110 eor \b1, \c1, \b1, ror#12
|
/Linux-v5.15/arch/xtensa/platforms/iss/include/platform/ |
D | simcall-iss.h | 61 register int b1 asm("a3") = b; in __simc() 66 : "+r"(a1), "+r"(b1) in __simc() 69 errno = b1; in __simc()
|
D | simcall-gdbio.h | 22 register int b1 asm("a6") = b; in __simc() 28 : "r"(b1), "r"(d1) in __simc()
|
/Linux-v5.15/scripts/ |
D | parse-maintainers.pl | 79 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-v5.15/arch/arm64/crypto/ |
D | aes-neonbs-core.S | 25 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 26 eor \b2, \b2, \b1 37 eor \b3, \b3, \b1 38 eor \b1, \b1, \b5 41 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 43 eor \b1, \b1, \b4 46 eor \b6, \b6, \b1 47 eor \b1, \b1, \b5 55 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 56 eor \b1, \b1, \b7 [all …]
|
/Linux-v5.15/arch/x86/crypto/ |
D | cast6-avx-x86_64-asm_64.S | 125 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 126 F_head(b1, RX, RGI1, RGI2, op0); \ 129 F_tail(b1, RX, RGI1, RGI2, op1, op2, op3); \ 135 #define F1_2(a1, b1, a2, b2) \ argument 136 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 137 #define F2_2(a1, b1, a2, b2) \ argument 138 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 139 #define F3_2(a1, b1, a2, b2) \ argument 140 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl)
|
D | cast5-avx-x86_64-asm_64.S | 125 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 126 F_head(b1, RX, RGI1, RGI2, op0); \ 129 F_tail(b1, RX, RGI1, RGI2, op1, op2, op3); \ 135 #define F1_2(a1, b1, a2, b2) \ argument 136 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 137 #define F2_2(a1, b1, a2, b2) \ argument 138 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 139 #define F3_2(a1, b1, a2, b2) \ argument 140 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl) 142 #define subround(a1, b1, a2, b2, f) \ argument [all …]
|
/Linux-v5.15/drivers/mtd/nand/ |
D | ecc-sw-hamming.c | 378 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-v5.15/Documentation/translations/zh_CN/arm64/ |
D | booting.txt | 193 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-v5.15/Documentation/arm64/ |
D | booting.rst | 220 - SCR_EL3.HCE (bit 8) must be initialised to 0b1. 225 - ICC_SRE_EL3.Enable (bit 3) must be initialiased to 0b1. 226 - ICC_SRE_EL3.SRE (bit 0) must be initialised to 0b1. 233 - ICC.SRE_EL2.Enable (bit 3) must be initialised to 0b1 234 - ICC_SRE_EL2.SRE (bit 0) must be initialised to 0b1. 255 - SCR_EL3.APK (bit 16) must be initialised to 0b1 256 - SCR_EL3.API (bit 17) must be initialised to 0b1 260 - HCR_EL2.APK (bit 40) must be initialised to 0b1 261 - HCR_EL2.API (bit 41) must be initialised to 0b1 271 having 0b1 set for the corresponding bit for each of the auxiliary [all …]
|
/Linux-v5.15/fs/ext4/ |
D | hash.c | 19 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local 25 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform() 26 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform() 30 buf[1] += b1; in TEA_transform()
|
/Linux-v5.15/arch/ia64/kernel/ |
D | module.c | 247 uint64_t b0, b1, *b = (uint64_t *) plt->bundle[1]; in plt_target() local 250 b0 = b[0]; b1 = b[1]; in plt_target() 251 off = ( ((b1 & 0x00fffff000000000UL) >> 36) /* imm20b -> bit 0 */ in plt_target() 252 | ((b0 >> 48) << 20) | ((b1 & 0x7fffffUL) << 36) /* imm39 -> bit 20 */ in plt_target() 253 | ((b1 & 0x0800000000000000UL) << 0)); /* i -> bit 59 */ in plt_target() 296 uint64_t b0, b1, *b = (uint64_t *) plt->bundle[0]; in plt_target() local 298 b0 = b[0]; b1 = b[1]; in plt_target() 299 return ( ((b1 & 0x000007f000000000) >> 36) /* imm7b -> bit 0 */ in plt_target() 300 | ((b1 & 0x07fc000000000000) >> 43) /* imm9d -> bit 7 */ in plt_target() 301 | ((b1 & 0x0003e00000000000) >> 29) /* imm5c -> bit 16 */ in plt_target() [all …]
|