/Linux-v4.19/arch/c6x/lib/ |
D | divremu.S | 36 [b1] lmbd .l2 1, B4, B1 37 ||[!b1] b .s2 B3 ; RETURN A 38 ||[!b1] mvk .d2 1, B4 40 ||[!b1] zero .s1 A5 52 || [b1] subc .l1x A4,B4,A4 53 || [b1] add .s2 -1, B1, B1 54 [b1] subc .l1x A4,B4,A4 55 || [b1] add .s2 -1, B1, B1 60 || [b1] subc .l1x A4,B4,A4 61 || [b1] add .s2 -1, B1, B1 [all …]
|
/Linux-v4.19/crypto/ |
D | aes_generic.c | 1337 u32 b0[4], b1[4]; in aes_encrypt() local 1347 f_nround(b1, b0, kp); in aes_encrypt() 1348 f_nround(b0, b1, kp); in aes_encrypt() 1352 f_nround(b1, b0, kp); in aes_encrypt() 1353 f_nround(b0, b1, kp); in aes_encrypt() 1356 f_nround(b1, b0, kp); in aes_encrypt() 1357 f_nround(b0, b1, kp); in aes_encrypt() 1358 f_nround(b1, b0, kp); in aes_encrypt() 1359 f_nround(b0, b1, kp); in aes_encrypt() 1360 f_nround(b1, b0, kp); in aes_encrypt() [all …]
|
D | xor.c | 68 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument 92 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed() 113 void *b1, *b2; in calibrate_xor_blocks() local 125 b1 = (void *) __get_free_pages(GFP_KERNEL, 2); in calibrate_xor_blocks() 126 if (!b1) { in calibrate_xor_blocks() 130 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks() 137 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks() 151 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()
|
/Linux-v4.19/drivers/isdn/hardware/avm/ |
D | Makefile | 6 obj-$(CONFIG_ISDN_DRV_AVMB1_B1ISA) += b1isa.o b1.o 7 obj-$(CONFIG_ISDN_DRV_AVMB1_B1PCI) += b1pci.o b1.o b1dma.o 8 obj-$(CONFIG_ISDN_DRV_AVMB1_B1PCMCIA) += b1pcmcia.o b1.o 10 obj-$(CONFIG_ISDN_DRV_AVMB1_T1ISA) += t1isa.o b1.o 11 obj-$(CONFIG_ISDN_DRV_AVMB1_T1PCI) += t1pci.o b1.o b1dma.o 12 obj-$(CONFIG_ISDN_DRV_AVMB1_C4) += c4.o b1.o
|
/Linux-v4.19/arch/s390/net/ |
D | bpf_jit_comp.c | 112 static inline void reg_set_seen(struct bpf_jit *jit, u32 b1) in reg_set_seen() argument 114 u32 r1 = reg2hex[b1]; in reg_set_seen() 120 #define REG_SET_SEEN(b1) \ argument 122 reg_set_seen(jit, b1); \ 125 #define REG_SEEN(b1) jit->seen_reg[reg2hex[(b1)]] argument 138 #define EMIT2(op, b1, b2) \ argument 140 _EMIT2(op | reg(b1, b2)); \ 141 REG_SET_SEEN(b1); \ 152 #define EMIT4(op, b1, b2) \ argument 154 _EMIT4(op | reg(b1, b2)); \ [all …]
|
/Linux-v4.19/fs/f2fs/ |
D | hash.c | 31 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local 37 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform() 38 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform() 42 buf[1] += b1; in TEA_transform()
|
/Linux-v4.19/drivers/isdn/mISDN/ |
D | dsp_biquad.h | 33 int32_t b1; member 41 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() argument 46 bq->b1 = b1; in biquad2_init() 59 y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2; in biquad2()
|
/Linux-v4.19/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-v4.19/arch/arm/include/asm/ |
D | xor.h | 29 : "=r" (src), "=r" (b1), "=r" (b2) \ 31 __XOR(a1, b1); __XOR(a2, b2); 35 : "=r" (src), "=r" (b1), "=r" (b2), "=r" (b3), "=r" (b4) \ 37 __XOR(a1, b1); __XOR(a2, b2); __XOR(a3, b3); __XOR(a4, b4) 57 register unsigned int b1 __asm__("r8"); in xor_arm4regs_2() 78 register unsigned int b1 __asm__("r8"); in xor_arm4regs_3() 98 register unsigned int b1 __asm__("ip"); in xor_arm4regs_4() 117 register unsigned int b1 __asm__("ip"); in xor_arm4regs_5()
|
/Linux-v4.19/block/ |
D | blk-integrity.c | 145 struct blk_integrity *b1 = &gd1->queue->integrity; in blk_integrity_compare() local 148 if (!b1->profile && !b2->profile) in blk_integrity_compare() 151 if (!b1->profile || !b2->profile) in blk_integrity_compare() 154 if (b1->interval_exp != b2->interval_exp) { in blk_integrity_compare() 157 1 << b1->interval_exp, 1 << b2->interval_exp); in blk_integrity_compare() 161 if (b1->tuple_size != b2->tuple_size) { in blk_integrity_compare() 164 b1->tuple_size, b2->tuple_size); in blk_integrity_compare() 168 if (b1->tag_size && b2->tag_size && (b1->tag_size != b2->tag_size)) { in blk_integrity_compare() 171 b1->tag_size, b2->tag_size); in blk_integrity_compare() 175 if (b1->profile != b2->profile) { in blk_integrity_compare() [all …]
|
/Linux-v4.19/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-v4.19/drivers/mtd/nand/raw/ |
D | nand_ecc.c | 424 unsigned char b0, b1, b2, bit_addr; in __nand_correct_data() local 436 b1 = read_ecc[1] ^ calc_ecc[1]; in __nand_correct_data() 439 b1 = read_ecc[0] ^ calc_ecc[0]; in __nand_correct_data() 448 if ((b0 | b1 | b2) == 0) in __nand_correct_data() 452 (((b1 ^ (b1 >> 1)) & 0x55) == 0x55) && in __nand_correct_data() 473 byte_addr = (addressbits[b1] << 4) + addressbits[b0]; in __nand_correct_data() 476 (addressbits[b1] << 4) + addressbits[b0]; in __nand_correct_data() 484 if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1) in __nand_correct_data()
|
/Linux-v4.19/tools/vm/ |
D | slabinfo.c | 775 char b1[20], b2[20], b3[20], b4[20]; in totals() local 951 store_size(b1, total_size);store_size(b2, total_waste); in totals() 953 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1, b2, b3); in totals() 955 store_size(b1, total_objects);store_size(b2, total_partobj); in totals() 957 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1, b2, b3); in totals() 965 store_size(b1, avg_objects);store_size(b2, min_objects); in totals() 968 b1, b2, b3, b4); in totals() 970 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals() 973 b1, b2, b3, b4); in totals() 975 store_size(b1, avg_partial);store_size(b2, min_partial); in totals() [all …]
|
/Linux-v4.19/drivers/crypto/nx/ |
D | nx-aes-ccm.c | 179 u8 tmp[16], *b1 = NULL, *b0 = NULL, *result = NULL; in generate_pat() local 207 b1 = nx_ctx->priv.ccm.iauth_tag; in generate_pat() 214 b1 = nx_ctx->csbcpb_aead->cpb.aes_cca.b1; in generate_pat() 218 b1 = nx_ctx->csbcpb_aead->cpb.aes_cca.b1; in generate_pat() 231 if (b1) { in generate_pat() 232 memset(b1, 0, 16); in generate_pat() 234 *(u16 *)b1 = assoclen; in generate_pat() 235 scatterwalk_map_and_copy(b1 + 2, req->src, 0, in generate_pat() 238 *(u16 *)b1 = (u16)(0xfffe); in generate_pat() 239 *(u32 *)&b1[2] = assoclen; in generate_pat() [all …]
|
/Linux-v4.19/drivers/usb/wusbcore/ |
D | crypto.c | 125 struct aes_ccm_b1 b1; member 212 WARN_ON(sizeof(*a) != sizeof(scratch->b1) - sizeof(scratch->b1.la)); in wusb_ccm_mac() 214 WARN_ON(sizeof(scratch->b1) != sizeof(struct aes_ccm_block)); in wusb_ccm_mac() 221 dst_size = blen + sizeof(scratch->b0) + sizeof(scratch->b1) + in wusb_ccm_mac() 243 scratch->b1.la = cpu_to_be16(blen + 14); in wusb_ccm_mac() 244 memcpy(&scratch->b1.mac_header, a, sizeof(*a)); in wusb_ccm_mac() 248 sg_set_buf(&sg[1], &scratch->b1, sizeof(scratch->b1)); in wusb_ccm_mac()
|
/Linux-v4.19/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-v4.19/arch/arm/crypto/ |
D | aes-neonbs-core.S | 88 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 89 veor \b2, \b2, \b1 100 veor \b3, \b3, \b1 101 veor \b1, \b1, \b5 104 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 106 veor \b1, \b1, \b4 109 veor \b6, \b6, \b1 110 veor \b1, \b1, \b5 118 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 119 veor \b1, \b1, \b7 [all …]
|
/Linux-v4.19/arch/x86/net/ |
D | bpf_jit_comp.c | 36 #define EMIT1(b1) EMIT(b1, 1) argument 37 #define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2) argument 38 #define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3) argument 39 #define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4) argument 41 #define EMIT1_off32(b1, off) \ argument 42 do { EMIT1(b1); EMIT(off, 4); } while (0) 43 #define EMIT2_off32(b1, b2, off) \ argument 44 do { EMIT2(b1, b2); EMIT(off, 4); } while (0) 45 #define EMIT3_off32(b1, b2, b3, off) \ argument 46 do { EMIT3(b1, b2, b3); EMIT(off, 4); } while (0) [all …]
|
/Linux-v4.19/scripts/ |
D | parse-maintainers.pl | 62 my $b1 = uc(substr($b, 0, 1)); 65 my $b_index = index($preferred_order, $b1); 70 if (($a1 =~ /^F$/ && $b1 =~ /^F$/) || 71 ($a1 =~ /^X$/ && $b1 =~ /^X$/)) {
|
/Linux-v4.19/arch/arm64/crypto/ |
D | aes-neonbs-core.S | 28 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 29 eor \b2, \b2, \b1 40 eor \b3, \b3, \b1 41 eor \b1, \b1, \b5 44 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 46 eor \b1, \b1, \b4 49 eor \b6, \b6, \b1 50 eor \b1, \b1, \b5 58 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 59 eor \b1, \b1, \b7 [all …]
|
/Linux-v4.19/fs/ext4/ |
D | hash.c | 18 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local 24 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform() 25 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform() 29 buf[1] += b1; in TEA_transform()
|
/Linux-v4.19/arch/x86/crypto/ |
D | cast5-avx-x86_64-asm_64.S | 140 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 141 F_head(b1, RX, RGI1, RGI2, op0); \ 144 F_tail(b1, RX, RGI1, RGI2, op1, op2, op3); \ 150 #define F1_2(a1, b1, a2, b2) \ argument 151 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 152 #define F2_2(a1, b1, a2, b2) \ argument 153 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 154 #define F3_2(a1, b1, a2, b2) \ argument 155 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl) 157 #define subround(a1, b1, a2, b2, f) \ argument [all …]
|
D | cast6-avx-x86_64-asm_64.S | 140 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 141 F_head(b1, RX, RGI1, RGI2, op0); \ 144 F_tail(b1, RX, RGI1, RGI2, op1, op2, op3); \ 150 #define F1_2(a1, b1, a2, b2) \ argument 151 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 152 #define F2_2(a1, b1, a2, b2) \ argument 153 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 154 #define F3_2(a1, b1, a2, b2) \ argument 155 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl)
|
/Linux-v4.19/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-v4.19/drivers/gpu/drm/gma500/ |
D | mdfld_dsi_pkg_sender.c | 249 u8 b1, b2, b3, b4; in send_long_pkg() local 267 b1 = *p++; in send_long_pkg() 272 REG_WRITE(data_reg, b4 << 24 | b3 << 16 | b2 << 8 | b1); in send_long_pkg() 277 b1 = 0; b2 = 0; b3 = 0; in send_long_pkg() 281 b1 = *p++; in send_long_pkg() 286 b1 = *p++; in send_long_pkg() 290 b1 = *p++; in send_long_pkg() 294 REG_WRITE(data_reg, b3 << 16 | b2 << 8 | b1); in send_long_pkg()
|