/Linux-v4.19/arch/x86/net/ |
D | bpf_jit_comp.c | 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 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) 47 #define EMIT4_off32(b1, b2, b3, b4, off) \ argument 48 do { EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0) 332 u8 b1, b2, b3; in emit_mov_imm32() local [all …]
|
D | bpf_jit_comp32.c | 67 #define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2) argument 68 #define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3) argument 69 #define EMIT4(b1, b2, b3, b4) \ argument 70 EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4) 74 #define EMIT2_off32(b1, b2, off) \ argument 75 do { EMIT2(b1, b2); EMIT(off, 4); } while (0) 76 #define EMIT3_off32(b1, b2, b3, off) \ argument 77 do { EMIT3(b1, b2, b3); EMIT(off, 4); } while (0) 78 #define EMIT4_off32(b1, b2, b3, b4, off) \ argument 79 do { EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0) [all …]
|
/Linux-v4.19/drivers/isdn/mISDN/ |
D | dsp_biquad.h | 34 int32_t b2; member 41 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() argument 47 bq->b2 = b2; 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) 58 register unsigned int b2 __asm__("r9"); in xor_arm4regs_2() 79 register unsigned int b2 __asm__("r9"); in xor_arm4regs_3() 99 register unsigned int b2 __asm__("lr"); in xor_arm4regs_4() 118 register unsigned int b2 __asm__("lr"); in xor_arm4regs_5()
|
/Linux-v4.19/block/ |
D | blk-integrity.c | 146 struct blk_integrity *b2 = &gd2->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/drivers/mtd/nand/raw/ |
D | nand_ecc.c | 424 unsigned char b0, b1, b2, bit_addr; in __nand_correct_data() local 441 b2 = read_ecc[2] ^ calc_ecc[2]; in __nand_correct_data() 448 if ((b0 | b1 | b2) == 0) in __nand_correct_data() 453 ((eccsize_mult == 1 && ((b2 ^ (b2 >> 1)) & 0x54) == 0x54) || in __nand_correct_data() 454 (eccsize_mult == 2 && ((b2 ^ (b2 >> 1)) & 0x55) == 0x55))) { in __nand_correct_data() 475 byte_addr = (addressbits[b2 & 0x3] << 8) + in __nand_correct_data() 477 bit_addr = addressbits[b2 >> 2]; 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/crypto/ |
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 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()
|
/Linux-v4.19/tools/objtool/arch/x86/lib/ |
D | insn.c | 153 insn_byte_t b2 = peek_nbyte_next(insn_byte_t, insn, 1); in insn_get_prefixes() local 160 if (X86_MODRM_MOD(b2) != 3) in insn_get_prefixes() 164 insn->vex_prefix.bytes[1] = b2; in insn_get_prefixes() 166 b2 = peek_nbyte_next(insn_byte_t, insn, 2); in insn_get_prefixes() 167 insn->vex_prefix.bytes[2] = b2; in insn_get_prefixes() 168 b2 = peek_nbyte_next(insn_byte_t, insn, 3); in insn_get_prefixes() 169 insn->vex_prefix.bytes[3] = b2; in insn_get_prefixes() 172 if (insn->x86_64 && X86_VEX_W(b2)) in insn_get_prefixes() 176 b2 = peek_nbyte_next(insn_byte_t, insn, 2); in insn_get_prefixes() 177 insn->vex_prefix.bytes[2] = b2; in insn_get_prefixes() [all …]
|
/Linux-v4.19/tools/perf/util/intel-pt-decoder/ |
D | insn.c | 153 insn_byte_t b2 = peek_nbyte_next(insn_byte_t, insn, 1); in insn_get_prefixes() local 160 if (X86_MODRM_MOD(b2) != 3) in insn_get_prefixes() 164 insn->vex_prefix.bytes[1] = b2; in insn_get_prefixes() 166 b2 = peek_nbyte_next(insn_byte_t, insn, 2); in insn_get_prefixes() 167 insn->vex_prefix.bytes[2] = b2; in insn_get_prefixes() 168 b2 = peek_nbyte_next(insn_byte_t, insn, 3); in insn_get_prefixes() 169 insn->vex_prefix.bytes[3] = b2; in insn_get_prefixes() 172 if (insn->x86_64 && X86_VEX_W(b2)) in insn_get_prefixes() 176 b2 = peek_nbyte_next(insn_byte_t, insn, 2); in insn_get_prefixes() 177 insn->vex_prefix.bytes[2] = b2; in insn_get_prefixes() [all …]
|
/Linux-v4.19/arch/x86/lib/ |
D | insn.c | 153 insn_byte_t b2 = peek_nbyte_next(insn_byte_t, insn, 1); in insn_get_prefixes() local 160 if (X86_MODRM_MOD(b2) != 3) in insn_get_prefixes() 164 insn->vex_prefix.bytes[1] = b2; in insn_get_prefixes() 166 b2 = peek_nbyte_next(insn_byte_t, insn, 2); in insn_get_prefixes() 167 insn->vex_prefix.bytes[2] = b2; in insn_get_prefixes() 168 b2 = peek_nbyte_next(insn_byte_t, insn, 3); in insn_get_prefixes() 169 insn->vex_prefix.bytes[3] = b2; in insn_get_prefixes() 172 if (insn->x86_64 && X86_VEX_W(b2)) in insn_get_prefixes() 176 b2 = peek_nbyte_next(insn_byte_t, insn, 2); in insn_get_prefixes() 177 insn->vex_prefix.bytes[2] = b2; in insn_get_prefixes() [all …]
|
/Linux-v4.19/arch/s390/net/ |
D | bpf_jit_comp.c | 138 #define EMIT2(op, b1, b2) \ argument 140 _EMIT2(op | reg(b1, b2)); \ 142 REG_SET_SEEN(b2); \ 152 #define EMIT4(op, b1, b2) \ argument 154 _EMIT4(op | reg(b1, b2)); \ 156 REG_SET_SEEN(b2); \ 159 #define EMIT4_RRF(op, b1, b2, b3) \ argument 161 _EMIT4(op | reg_high(b3) << 8 | reg(b1, b2)); \ 163 REG_SET_SEEN(b2); \ 173 #define EMIT4_DISP(op, b1, b2, disp) \ argument [all …]
|
/Linux-v4.19/arch/s390/include/asm/ |
D | vx-insn.h | 263 GR_NUM b2, "%r0" 266 .word (b2 << 12) | (\disp) 295 GR_NUM b2, \base 297 .word (b2 << 12) | (\disp) 305 GR_NUM b2, \base 307 .word (b2 << 12) | (\disp) 346 GR_NUM b2, \base 349 .word (b2 << 12) | (\disp) 369 GR_NUM b2, \base /* Base register */ 371 .word (b2 << 12) | (\disp) [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 92 veor \b6, \b6, \b2 99 veor \b2, \b2, \b7 104 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 108 veor \b2, \b2, \b0 114 veor \b2, \b2, \b5 118 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 123 veor \b2, \b2, \b5 126 veor \b2, \b2, \b0 [all …]
|
D | ghash-ce-core.S | 69 .macro __pmull_p64, rd, rn, rm, b1, b2, b3, b4 83 .macro __pmull_p8, rq, ad, bd, b1=t4l, b2=t3l, b3=t4l, b4=t3l 91 .ifc \b2, t3l 96 vmull.p8 t3q, \ad, \b2 @ G = A*B2
|
/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 142 F_head(b2, RX, RGI3, RGI4, op0); \ 145 F_tail(b2, RTMP, RGI3, RGI4, 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 142 F_head(b2, RX, RGI3, RGI4, op0); \ 145 F_tail(b2, RTMP, RGI3, RGI4, 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/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 32 eor \b6, \b6, \b2 39 eor \b2, \b2, \b7 44 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 48 eor \b2, \b2, \b0 54 eor \b2, \b2, \b5 58 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 63 eor \b2, \b2, \b5 66 eor \b2, \b2, \b0 [all …]
|
/Linux-v4.19/drivers/gpu/drm/gma500/ |
D | mdfld_dsi_pkg_sender.c | 249 u8 b1, b2, b3, b4; in send_long_pkg() local 268 b2 = *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() 282 b2 = *p++; in send_long_pkg() 287 b2 = *p++; in send_long_pkg() 294 REG_WRITE(data_reg, b3 << 16 | b2 << 8 | b1); in send_long_pkg()
|
/Linux-v4.19/drivers/iio/pressure/ |
D | mpl115.c | 32 s16 b1, b2; member 76 pcomp = (y1 + ((data->b2 * (int) tadc) >> 1)) >> 9; in mpl115_comp_pressure() 187 data->b2 = ret; in mpl115_probe()
|
/Linux-v4.19/drivers/media/usb/em28xx/ |
D | em28xx-i2c.c | 87 u8 b2[6]; in em2800_i2c_send_bytes() local 92 b2[5] = 0x80 + len - 1; in em2800_i2c_send_bytes() 93 b2[4] = addr; in em2800_i2c_send_bytes() 94 b2[3] = buf[0]; in em2800_i2c_send_bytes() 96 b2[2] = buf[1]; in em2800_i2c_send_bytes() 98 b2[1] = buf[2]; in em2800_i2c_send_bytes() 100 b2[0] = buf[3]; in em2800_i2c_send_bytes() 103 ret = dev->em28xx_write_regs(dev, 4 - len, &b2[4 - len], 2 + len); in em2800_i2c_send_bytes()
|
/Linux-v4.19/drivers/media/dvb-frontends/ |
D | ix2505v.c | 61 u8 b2[] = {0}; in ix2505v_read_status_reg() local 65 { .addr = addr, .flags = I2C_M_RD, .buf = b2, .len = 1 } in ix2505v_read_status_reg() 71 return (ret == 1) ? (int) b2[0] : -1; in ix2505v_read_status_reg()
|
/Linux-v4.19/drivers/thermal/ |
D | rcar_gen3_thermal.c | 70 int b2; member 149 coef->b2 = FIXPT_INT(thcode[0]) - coef->a2 * TJ_1; in rcar_gen3_thermal_calc_coefs() 172 val2 = FIXPT_DIV(FIXPT_INT(reg) - tsc->coef.b2, tsc->coef.a2); in rcar_gen3_thermal_get_temp() 192 val2 = celsius * tsc->coef.a2 + tsc->coef.b2; in rcar_gen3_thermal_mcelsius_to_temp()
|
/Linux-v4.19/drivers/net/hamradio/ |
D | baycom_ser_fdx.c | 384 unsigned char b1,b2,b3; in ser12_check_uart() local 391 b2 = inb(MSR(iobase)); in ser12_check_uart() 395 outb(b2, MSR(iobase)); in ser12_check_uart() 406 b2 = inb(SCR(iobase)); in ser12_check_uart() 407 if ((b1 != 0x5a) || (b2 != 0xa5)) in ser12_check_uart()
|