/linux-4.1.27/drivers/staging/skein/ |
D | threefish_block.c | 7 b2 = input[2], b3 = input[3]; in threefish_encrypt_256() local 19 b2 += b3 + k2 + t1; in threefish_encrypt_256() 20 b3 = ((b3 << 16) | (b3 >> (64 - 16))) ^ b2; in threefish_encrypt_256() 25 b2 += b1; in threefish_encrypt_256() 26 b1 = ((b1 << 57) | (b1 >> (64 - 57))) ^ b2; in threefish_encrypt_256() 31 b2 += b3; in threefish_encrypt_256() 32 b3 = ((b3 << 40) | (b3 >> (64 - 40))) ^ b2; in threefish_encrypt_256() 37 b2 += b1; in threefish_encrypt_256() 38 b1 = ((b1 << 37) | (b1 >> (64 - 37))) ^ b2; in threefish_encrypt_256() 45 b2 += b3 + k3 + t2; in threefish_encrypt_256() [all …]
|
/linux-4.1.27/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-4.1.27/drivers/atm/ |
D | fore200e.h | 70 #define BITFIELD2(b1, b2) b1; b2; argument 71 #define BITFIELD3(b1, b2, b3) b1; b2; b3; argument 72 #define BITFIELD4(b1, b2, b3, b4) b1; b2; b3; b4; argument 73 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5; argument 74 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b3; b4; b5; b6; argument 76 #define BITFIELD2(b1, b2) b2; b1; argument 77 #define BITFIELD3(b1, b2, b3) b3; b2; b1; argument 78 #define BITFIELD4(b1, b2, b3, b4) b4; b3; b2; b1; argument 79 #define BITFIELD5(b1, b2, b3, b4, b5) b5; b4; b3; b2; b1; argument 80 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b6; b5; b4; b3; b2; b1; argument
|
/linux-4.1.27/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-4.1.27/drivers/mtd/nand/ |
D | nand_ecc.c | 446 unsigned char b0, b1, b2, bit_addr; in __nand_correct_data() local 463 b2 = read_ecc[2] ^ calc_ecc[2]; in __nand_correct_data() 470 if ((b0 | b1 | b2) == 0) in __nand_correct_data() 475 ((eccsize_mult == 1 && ((b2 ^ (b2 >> 1)) & 0x54) == 0x54) || in __nand_correct_data() 476 (eccsize_mult == 2 && ((b2 ^ (b2 >> 1)) & 0x55) == 0x55))) { in __nand_correct_data() 497 byte_addr = (addressbits[b2 & 0x3] << 8) + in __nand_correct_data() 499 bit_addr = addressbits[b2 >> 2]; in __nand_correct_data() 506 if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1) in __nand_correct_data()
|
/linux-4.1.27/block/ |
D | blk-integrity.c | 149 struct blk_integrity *b2 = gd2->integrity; in blk_integrity_compare() local 151 if (!b1 && !b2) in blk_integrity_compare() 154 if (!b1 || !b2) in blk_integrity_compare() 157 if (b1->interval != b2->interval) { in blk_integrity_compare() 160 b1->interval, b2->interval); in blk_integrity_compare() 164 if (b1->tuple_size != b2->tuple_size) { in blk_integrity_compare() 167 b1->tuple_size, b2->tuple_size); in blk_integrity_compare() 171 if (b1->tag_size && b2->tag_size && (b1->tag_size != b2->tag_size)) { in blk_integrity_compare() 174 b1->tag_size, b2->tag_size); in blk_integrity_compare() 178 if (strcmp(b1->name, b2->name)) { in blk_integrity_compare() [all …]
|
/linux-4.1.27/crypto/ |
D | xor.c | 64 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument 88 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed() 109 void *b1, *b2; in calibrate_xor_blocks() local 122 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks() 135 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks()
|
/linux-4.1.27/arch/x86/net/ |
D | bpf_jit_comp.c | 43 #define EMIT2(b1, b2) EMIT((b1) + ((b2) << 8), 2) argument 44 #define EMIT3(b1, b2, b3) EMIT((b1) + ((b2) << 8) + ((b3) << 16), 3) argument 45 #define EMIT4(b1, b2, b3, b4) EMIT((b1) + ((b2) << 8) + ((b3) << 16) + ((b4) << 24), 4) argument 48 #define EMIT2_off32(b1, b2, off) \ argument 49 do {EMIT2(b1, b2); EMIT(off, 4); } while (0) 50 #define EMIT3_off32(b1, b2, b3, off) \ argument 51 do {EMIT3(b1, b2, b3); EMIT(off, 4); } while (0) 52 #define EMIT4_off32(b1, b2, b3, b4, off) \ argument 53 do {EMIT4(b1, b2, b3, b4); EMIT(off, 4); } while (0) 269 u8 b1 = 0, b2 = 0, b3 = 0; in do_jit() local [all …]
|
/linux-4.1.27/tools/vm/ |
D | slabinfo.c | 748 char b1[20], b2[20], b3[20], b4[20]; in totals() local 924 store_size(b1, total_size);store_size(b2, total_waste); in totals() 926 printf("Memory used: %6s # Loss : %6s MRatio:%6s%%\n", b1, b2, b3); in totals() 928 store_size(b1, total_objects);store_size(b2, total_partobj); in totals() 930 printf("# Objects : %6s # PartObj: %6s ORatio:%6s%%\n", b1, b2, b3); in totals() 936 store_size(b1, avg_objects);store_size(b2, min_objects); in totals() 939 b1, b2, b3, b4); in totals() 941 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals() 944 b1, b2, b3, b4); in totals() 946 store_size(b1, avg_partial);store_size(b2, min_partial); in totals() [all …]
|
/linux-4.1.27/arch/s390/net/ |
D | bpf_jit_comp.c | 130 #define EMIT2(op, b1, b2) \ argument 132 _EMIT2(op | reg(b1, b2)); \ 134 REG_SET_SEEN(b2); \ 144 #define EMIT4(op, b1, b2) \ argument 146 _EMIT4(op | reg(b1, b2)); \ 148 REG_SET_SEEN(b2); \ 151 #define EMIT4_RRF(op, b1, b2, b3) \ argument 153 _EMIT4(op | reg_high(b3) << 8 | reg(b1, b2)); \ 155 REG_SET_SEEN(b2); \ 165 #define EMIT4_DISP(op, b1, b2, disp) \ argument [all …]
|
/linux-4.1.27/drivers/isdn/pcbit/ |
D | drv.c | 115 dev->b2 = kzalloc(sizeof(struct pcbit_chan), GFP_KERNEL); in pcbit_init_dev() 116 if (!dev->b2) { in pcbit_init_dev() 125 dev->b2->id = 1; in pcbit_init_dev() 136 kfree(dev->b2); in pcbit_init_dev() 158 kfree(dev->b2); in pcbit_init_dev() 190 kfree(dev->b2); in pcbit_init_dev() 225 if (dev->b2->fsm_timer.function) in pcbit_terminate() 226 del_timer(&dev->b2->fsm_timer); in pcbit_terminate() 228 kfree(dev->b2); in pcbit_terminate() 250 chan = (ctl->arg & 0x0F) ? dev->b2 : dev->b1; in pcbit_command() [all …]
|
D | capi.h | 75 else if (dev->b2->callref == callref) in capi_channel() 76 return dev->b2; in capi_channel()
|
D | pcbit.h | 98 struct pcbit_chan *b2; member
|
D | layer2.h | 150 if (dev->b1 == chan || dev->b2 == chan) in chan2dev()
|
D | layer2.c | 488 chan = dev->b2; in pcbit_firmware_bug()
|
/linux-4.1.27/arch/x86/crypto/ |
D | cast5-avx-x86_64-asm_64.S | 139 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 141 F_head(b2, RX, RGI3, RGI4, op0); \ 144 F_tail(b2, RTMP, RGI3, RGI4, op1, op2, op3); \ 149 #define F1_2(a1, b1, a2, b2) \ argument 150 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 151 #define F2_2(a1, b1, a2, b2) \ argument 152 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 153 #define F3_2(a1, b1, a2, b2) \ argument 154 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl) 156 #define subround(a1, b1, a2, b2, f) \ argument [all …]
|
D | cast6-avx-x86_64-asm_64.S | 139 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 141 F_head(b2, RX, RGI3, RGI4, op0); \ 144 F_tail(b2, RTMP, RGI3, RGI4, op1, op2, op3); \ 149 #define F1_2(a1, b1, a2, b2) \ argument 150 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 151 #define F2_2(a1, b1, a2, b2) \ argument 152 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 153 #define F3_2(a1, b1, a2, b2) \ argument 154 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl)
|
D | camellia-aesni-avx-asm_64.S | 431 #define byteslice_16x16b(a0, b0, c0, d0, a1, b1, c1, d1, a2, b2, c2, d2, a3, \ argument 436 transpose_4x4(b0, b1, b2, b3, d2, d3); \ 451 vpshufb a0, b2, b2; \ 474 transpose_4x4(a2, b2, c2, d2, b0, b1); \
|
D | camellia-aesni-avx2-asm_64.S | 470 #define byteslice_16x16b_fast(a0, b0, c0, d0, a1, b1, c1, d1, a2, b2, c2, d2, \ argument 475 transpose_4x4(b0, b1, b2, b3, d2, d3); \ 490 vpshufb a0, b2, b2; \ 513 transpose_4x4(a2, b2, c2, d2, b0, b1); \
|
/linux-4.1.27/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() 170 if (insn->x86_64 && X86_VEX_W(b2)) in insn_get_prefixes() 179 insn->vex_prefix.bytes[2] = b2 & 0x7f; in insn_get_prefixes()
|
D | x86-opcode-map.txt | 227 b2: MOV DL/R10L,Ib 520 b2: LSS Gv,Mp
|
/linux-4.1.27/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-4.1.27/drivers/cpufreq/ |
D | exynos-cpufreq.h | 27 #define APLL_FREQ(f, a0, a1, a2, a3, a4, a5, a6, a7, b0, b1, b2, m, p, s) \ argument 32 .clk_div_cpu1 = (b0 << 0 | b1 << 4 | b2 << 8), \
|
/linux-4.1.27/drivers/iio/pressure/ |
D | mpl115.c | 33 s16 b1, b2; member 75 pcomp = (y1 + ((data->b2 * (int) tadc) >> 1)) >> 9; in mpl115_comp_pressure() 185 data->b2 = ret; in mpl115_probe()
|
/linux-4.1.27/arch/blackfin/include/asm/ |
D | context.S | 44 [--sp] = b2; 116 [--sp] = b2; 175 [--sp] = b2; 252 b2 = [sp++]; define 322 b2 = [sp++]; define
|
D | dpmc.h | 93 [--sp] = b2; 149 b2 = [sp++];
|
/linux-4.1.27/drivers/media/usb/em28xx/ |
D | em28xx-i2c.c | 54 u8 b2[6]; in em2800_i2c_send_bytes() local 60 b2[5] = 0x80 + len - 1; in em2800_i2c_send_bytes() 61 b2[4] = addr; in em2800_i2c_send_bytes() 62 b2[3] = buf[0]; in em2800_i2c_send_bytes() 64 b2[2] = buf[1]; in em2800_i2c_send_bytes() 66 b2[1] = buf[2]; in em2800_i2c_send_bytes() 68 b2[0] = buf[3]; in em2800_i2c_send_bytes() 71 ret = dev->em28xx_write_regs(dev, 4 - len, &b2[4 - len], 2 + len); in em2800_i2c_send_bytes()
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | ix2505v.c | 65 u8 b2[] = {0}; in ix2505v_read_status_reg() local 69 { .addr = addr, .flags = I2C_M_RD, .buf = b2, .len = 1 } in ix2505v_read_status_reg() 75 return (ret == 1) ? (int) b2[0] : -1; in ix2505v_read_status_reg()
|
D | tua6100.c | 177 u8 b2 [] = { 0x00 }; in tua6100_attach() local 179 { .addr = addr, .flags = I2C_M_RD, .buf = b2, .len = 1 } }; in tua6100_attach()
|
D | lgs8gl5.c | 138 u8 b2[] = {reg, data}; in lgs8gl5_update_alt_reg() local 155 .buf = b2, in lgs8gl5_update_alt_reg()
|
/linux-4.1.27/drivers/net/hamradio/ |
D | baycom_ser_fdx.c | 382 unsigned char b1,b2,b3; in ser12_check_uart() local 389 b2 = inb(MSR(iobase)); in ser12_check_uart() 393 outb(b2, MSR(iobase)); in ser12_check_uart() 404 b2 = inb(SCR(iobase)); in ser12_check_uart() 405 if ((b1 != 0x5a) || (b2 != 0xa5)) in ser12_check_uart()
|
D | baycom_ser_hdx.c | 441 unsigned char b1,b2,b3; in ser12_check_uart() local 448 b2 = inb(MSR(iobase)); in ser12_check_uart() 452 outb(b2, MSR(iobase)); in ser12_check_uart() 463 b2 = inb(SCR(iobase)); in ser12_check_uart() 464 if ((b1 != 0x5a) || (b2 != 0xa5)) in ser12_check_uart()
|
D | yam.c | 511 unsigned char b1, b2, b3; in yam_check_uart() local 518 b2 = inb(MSR(iobase)); in yam_check_uart() 522 outb(b2, MSR(iobase)); in yam_check_uart() 533 b2 = inb(SCR(iobase)); in yam_check_uart() 534 if ((b1 != 0x5a) || (b2 != 0xa5)) in yam_check_uart()
|
/linux-4.1.27/drivers/media/usb/dvb-usb/ |
D | dibusb-mb.c | 71 u8 b[2] = { 0,0 }, b2[1]; in dibusb_tuner_probe_and_attach() local 75 { .flags = I2C_M_RD, .buf = b2, .len = 1 }, in dibusb_tuner_probe_and_attach() 93 if (b2[0] == 0xfe) { in dibusb_tuner_probe_and_attach()
|
/linux-4.1.27/include/linux/ |
D | signal.h | 108 unsigned long a0, a1, a2, a3, b0, b1, b2, b3; \ 113 b3 = b->sig[3]; b2 = b->sig[2]; \ 115 r->sig[2] = op(a2, b2); \
|
D | bio.h | 186 #define BIOVEC_SEG_BOUNDARY(q, b1, b2) \ argument 187 …__BIO_SEG_BOUNDARY(bvec_to_phys((b1)), bvec_to_phys((b2)) + (b2)->bv_len, queue_segment_boundary((…
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 48 .long R(ef, fa, fa, 15), R(b2, 59, 59, eb) 69 .long R(7f, b2, b2, cd), R(ea, 75, 75, 9f) 72 .long R(36, 1b, 1b, 2d), R(dc, 6e, 6e, b2) 197 .long R(b2, eb, 28, 07), R(2f, b5, c2, 03) 199 .long R(30, 28, 87, f2), R(23, bf, a5, b2) 243 .long R(1d, 9e, 2f, 4b), R(dc, b2, 30, f3) 267 .long R(31, a4, b2, af), R(2a, 3f, 23, 31)
|
/linux-4.1.27/lib/ |
D | bch.c | 606 unsigned int a, b, c, a2, b2, c2, e3, tmp[4]; in find_poly_deg3_roots() local 612 b2 = gf_div(bch, poly->c[1], e3); in find_poly_deg3_roots() 617 b = gf_mul(bch, a2, b2)^c2; /* b = a2b2 + c2 */ in find_poly_deg3_roots() 618 a = gf_sqr(bch, a2)^b2; /* a = a2^2 + b2 */ in find_poly_deg3_roots() 639 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local 676 b2 = gf_div(bch, a, d); in find_poly_deg4_roots() 681 b2 = c; in find_poly_deg4_roots() 685 if (find_affine4_roots(bch, a2, b2, c2, roots) == 4) { in find_poly_deg4_roots()
|
D | dma-debug.c | 1177 unsigned long b2 = (unsigned long)end; in overlap() local 1179 return !(b1 <= a2 || a1 >= b2); in overlap()
|
/linux-4.1.27/arch/blackfin/include/uapi/asm/ |
D | ptrace.h | 54 long b2; member
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | hdmi.h | 275 const u32 idx, int b2, int b1, u32 val) in hdmi_wait_for_bit_change() argument 278 while (val != (v = REG_GET(base_addr, idx, b2, b1))) { in hdmi_wait_for_bit_change()
|
D | hdmi5_core.h | 291 u16 b1, b2, b3, b4; member
|
D | dsi.c | 1199 int b0, b1, b2; in _dsi_print_reset_status() local 1209 b2 = 26; in _dsi_print_reset_status() 1213 b2 = 26; in _dsi_print_reset_status() 1224 DSI_FLD_GET(DSIPHY_CFG5, b2, b2), in _dsi_print_reset_status() 2689 int channel, u8 b1, u8 b2, u8 b3, u8 b4) in dsi_vc_write_long_payload() argument 2693 val = b4 << 24 | b3 << 16 | b2 << 8 | b1 << 0; in dsi_vc_write_long_payload() 2709 u8 b1, b2, b3, b4; in dsi_vc_send_long() local 2730 b2 = *p++; in dsi_vc_send_long() 2734 dsi_vc_write_long_payload(dsidev, channel, b1, b2, b3, b4); in dsi_vc_send_long() 2739 b1 = 0; b2 = 0; b3 = 0; in dsi_vc_send_long() [all …]
|
D | hdmi5_core.c | 490 REG_FLD_MOD(base, HDMI_CORE_CSC_COEF_B2_MSB, csc_coeff.b2 >> 8, 6, 0); in hdmi_core_csc_config() 491 REG_FLD_MOD(base, HDMI_CORE_CSC_COEF_B2_LSB, csc_coeff.b2, 7, 0); in hdmi_core_csc_config()
|
/linux-4.1.27/arch/ia64/include/uapi/asm/ |
D | ptrace.h | 193 unsigned long b2; member
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | signal.c | 68 RESTORE(b0); RESTORE(b1); RESTORE(b2); RESTORE(b3); in rt_restore_sigcontext() 129 SETUP(b0); SETUP(b1); SETUP(b2); SETUP(b3); in rt_setup_sigcontext()
|
D | kgdb.c | 42 gdb_regs[BFIN_B2] = regs->b2; in pt_regs_to_gdb_regs() 118 regs->b2 = gdb_regs[BFIN_B2]; in gdb_regs_to_pt_regs()
|
D | asm-offsets.c | 87 DEFINE(PT_B2, offsetof(struct pt_regs, b2)); in main()
|
D | trace.c | 976 fp->b2, fp->l2, fp->m2, fp->i2); in show_regs()
|
/linux-4.1.27/fs/hpfs/ |
D | ea.c | 321 void *b1, *b2; in hpfs_set_ea() local 326 if (!(b2 = hpfs_get_sector(s, new_sec + i, &bh2))) { in hpfs_set_ea() 331 memcpy(b2, b1, 512); in hpfs_set_ea()
|
/linux-4.1.27/drivers/tty/vt/ |
D | cp437.uni | 45 0x1e U+25b2 256 0xe1 U+03b2 U+00df 284 0xfd U+00b2
|
/linux-4.1.27/arch/c6x/kernel/ |
D | signal.c | 47 COPY(b0); COPY(b1); COPY(b2); COPY(b3); COPY(b5); COPY(b7); COPY(b9); in restore_sigcontext() 112 COPY(b0); COPY(b1); COPY(b2); COPY(b3); COPY(b5); COPY(b7); COPY(b9); in setup_sigcontext()
|
D | asm-offsets.c | 68 OFFSET(REGS_B2, pt_regs, b2); in foo()
|
D | traps.c | 39 pr_err("A2: %08lx B2: %08lx\n", regs->a2, regs->b2); in show_regs()
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
D | bttv-i2c.c | 299 unsigned char b2, int both) in bttv_I2CWrite() argument 308 buffer[1] = b2; in bttv_I2CWrite()
|
D | bttv.h | 373 unsigned char b2, int both);
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | softfloat-macros | 359 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is 372 bits64 b2, 381 z2 = a2 + b2; 416 Subtracts the 192-bit value formed by concatenating `b0', `b1', and `b2' 430 bits64 b2, 439 z2 = a2 - b2; 440 borrow1 = ( a2 < b2 );
|
/linux-4.1.27/tools/usb/usbip/ |
D | README | 103 - busid 4-1 (046d:08b2) 161 3-1: Logitech, Inc. : QuickCam Pro 4000 (046d:08b2)
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 73 # r1 = {b7 b6 b5 b4 b3 b2 b1 b0} 84 # r2 = {h2 g2 f2 e2 d2 c2 b2 a2} 95 vshufps $0xEE, \r1, \r0, \r0 # r0 = {b7 b6 a7 a6 b3 b2 a3 a2} 99 vshufps $0x88, \r2, \r0, \r1 # r1 = {d6 c6 b6 a6 d2 c2 b2 a2}
|
/linux-4.1.27/Documentation/ |
D | java.txt | 224 int b1, b2; 228 b2 = fgetc(classfile); 229 if(b2 == EOF) 231 return (u_int16_t)((b1 << 8) | b2);
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Audiophile-Usb.txt | 275 | b7| b6| b5| b4| b3| b2| b1| b0| 286 * b2 is the Rate selection flag 292 - Note that b2 implies b3 as the 96kHz mode is only supported for 24 bits 299 - b4 is implied by b2 (since only one port is enabled at a time no synch 307 b2 implies b3. But _there_will_be_no_warning_ in /var/log/messages 309 - choosing b2 will prepare all interfaces for 24bits/96kHz but you'll
|
/linux-4.1.27/Documentation/blockdev/ |
D | cpqarray.txt | 67 b7 b6 b5 b4 b3 b2 b1 b0
|
D | cciss.txt | 63 b7 b6 b5 b4 b3 b2 b1 b0
|
/linux-4.1.27/arch/c6x/include/uapi/asm/ |
D | ptrace.h | 134 REG_PAIR(b3, b2);
|
/linux-4.1.27/drivers/staging/netlogic/ |
D | xlr_net.c | 574 int b1, b2, c1, c2, i, j, k; in xlr_config_translate_table() local 606 b2 = bkts[k]; in xlr_config_translate_table() 610 (c2 << 7) | (b2 << 1) | (use_bkt << 0)); in xlr_config_translate_table() 612 i, b1, b2, c1, c2); in xlr_config_translate_table()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | entry.h | 57 .spillsp b2,SW(B2)+16+(off); .spillsp b3,SW(B3)+16+(off); \
|
D | head.S | 110 SAVE_FROM_REG(b2,_reg1,_reg2);; \ 1108 SET_REG(b2); 1131 mov b2=r18 // doing tlb_flush work 1144 br.sptk.many b2;; // jump to tlb purge code 1150 RESTORE_REG(b2, r25, r17);;
|
D | relocate_kernel.S | 221 mov r4=b2
|
D | asm-offsets.c | 163 DEFINE(IA64_SWITCH_STACK_B2_OFFSET, offsetof (struct switch_stack, b2)); in foo()
|
D | mca_asm.S | 604 mov temp3=b2 767 mov b2=temp3
|
D | entry.S | 90 mov r5=0; mov f3=f0; mov b2=r0 299 mov r23=b2 424 mov b2=r23
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_ct.c | 2199 uint32_t b1, b2, b3, b4, i, rev; in lpfc_decode_firmware_rev() local 2213 b2 = (rev & 0x00000f00) >> 8; in lpfc_decode_firmware_rev() 2253 b1, b2, b3, (char *)str); in lpfc_decode_firmware_rev() 2256 b2, b3); in lpfc_decode_firmware_rev() 2260 b1, b2, b3, c, in lpfc_decode_firmware_rev() 2264 b1, b2, b3, c, b4); in lpfc_decode_firmware_rev() 2270 b2 = (rev & 0x00f00000) >> 20; in lpfc_decode_firmware_rev() 2275 sprintf(fwrevision, "%d.%d%d%c%d", b1, b2, b3, c, b4); in lpfc_decode_firmware_rev()
|
/linux-4.1.27/arch/x86/kernel/ |
D | uprobes.c | 58 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ argument 59 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
D | kst_ifc.h | 170 diva_prot_statistics_t b2; member
|
D | maintidi.c | 1756 &pLib->InterfaceStat.b2.X_Frames; in diva_create_parse_table() 1761 &pLib->InterfaceStat.b2.X_Bytes; in diva_create_parse_table() 1766 &pLib->InterfaceStat.b2.X_Errors; in diva_create_parse_table() 1771 &pLib->InterfaceStat.b2.R_Frames; in diva_create_parse_table() 1776 &pLib->InterfaceStat.b2.R_Bytes; in diva_create_parse_table() 1781 &pLib->InterfaceStat.b2.R_Errors; in diva_create_parse_table()
|
/linux-4.1.27/arch/blackfin/mach-common/ |
D | interrupt.S | 58 [--sp] = b2;
|
/linux-4.1.27/include/linux/mfd/ |
D | cros_ec_commands.h | 1511 float b2; member 1523 float b2; member
|
/linux-4.1.27/arch/x86/kernel/kprobes/ |
D | core.c | 70 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ argument 71 (((b0##UL << 0x0)|(b1##UL << 0x1)|(b2##UL << 0x2)|(b3##UL << 0x3) | \
|
/linux-4.1.27/drivers/md/ |
D | raid0.c | 84 char b2[BDEVNAME_SIZE]; in create_strip_zones() local 110 bdevname(rdev2->bdev,b2), in create_strip_zones()
|
D | dm-thin-metadata.c | 317 uint64_t b1, b2; in data_block_equal() local 323 unpack_block_time(le64_to_cpu(v2_le), &b2, &t); in data_block_equal() 325 return b1 == b2; in data_block_equal()
|
D | md.c | 963 char b[BDEVNAME_SIZE], b2[BDEVNAME_SIZE]; in super_90_load() local 1025 b, bdevname(refdev->bdev,b2)); in super_90_load() 1031 b, bdevname(refdev->bdev, b2)); in super_90_load() 1389 char b[BDEVNAME_SIZE], b2[BDEVNAME_SIZE]; in super_1_load() local 1527 bdevname(refdev->bdev,b2)); in super_1_load() 5102 char b[BDEVNAME_SIZE], b2[BDEVNAME_SIZE]; in md_run() local 5117 bdevname(rdev2->bdev,b2)); in md_run() 5811 char b[BDEVNAME_SIZE], b2[BDEVNAME_SIZE]; in add_new_disk() local 5845 bdevname(rdev0->bdev,b2)); in add_new_disk()
|
/linux-4.1.27/drivers/net/ethernet/sgi/ |
D | ioc3-eth.c | 1477 unsigned long b2 = (data | 0x3fffUL) + 1UL; in ioc3_start_xmit() local 1478 unsigned long s1 = b2 - data; in ioc3_start_xmit() 1479 unsigned long s2 = data + len - b2; in ioc3_start_xmit() 1486 desc->p2 = cpu_to_be64(ioc3_map((void *) b2, 1)); in ioc3_start_xmit()
|
/linux-4.1.27/Documentation/video4linux/ |
D | CARDLIST.cx88 | 40 39 -> KWorld DVB-S 100 [17de:08b2,1421:0341]
|
D | CARDLIST.em28xx | 83 82 -> Terratec Cinergy HTC Stick (em2884) [0ccd:00b2]
|
D | CARDLIST.bttv | 117 116 -> SIMUS GVC1100 [aa6a:82b2]
|
/linux-4.1.27/Documentation/networking/ |
D | ipddp.txt | 47 distribution is a patch to netatalk-1.4b2+asun2.0a17.2 (available from
|
D | openvswitch.txt | 85 in_port(1), eth(src=e0:91:f5:21:d0:b2, dst=00:02:e3:0f:80:a4),
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_hid.txt | 236 {.opt = "--b2", .val = 0x02}, 281 {.opt = "--b2", .val = 0x20},
|
/linux-4.1.27/drivers/media/i2c/ |
D | saa7115.c | 738 int b2 = wss_bits[(p[i] >> 3) & 7]; in saa711x_decode_wss() local 740 if (b1 == b2) in saa711x_decode_wss() 742 wss |= b2 << i; in saa711x_decode_wss()
|
/linux-4.1.27/drivers/net/ethernet/freescale/ |
D | gianfar_ethtool.c | 1406 struct gfar_filer_entry *b2, u32 mask) in gfar_swap_bits() argument 1412 temp[3] = b2->ctrl & mask; in gfar_swap_bits() 1417 b2->ctrl &= ~mask; in gfar_swap_bits() 1422 b2->ctrl |= temp[2]; in gfar_swap_bits()
|
/linux-4.1.27/drivers/pci/ |
D | probe.c | 1931 struct pci_bus *b, *b2; in pci_create_root_bus() local 1946 b2 = pci_find_bus(pci_domain_nr(b), bus); in pci_create_root_bus() 1947 if (b2) { in pci_create_root_bus() 1949 dev_dbg(&b2->dev, "bus already known\n"); in pci_create_root_bus()
|
/linux-4.1.27/drivers/media/usb/ttusb-budget/ |
D | dvb-ttusb-budget.c | 404 u8 b2[] = { 0xaa, ++ttusb->c, 0x32, 1, 0 }; in ttusb_init_controller() local 427 if ((err = ttusb_cmd(ttusb, b2, sizeof(b2), 0))) in ttusb_init_controller()
|
/linux-4.1.27/fs/ntfs/ |
D | runlist.c | 862 u8 b2 = *buf & 0xf; in ntfs_mapping_pairs_decompress() local 863 b = b2 + ((*buf >> 4) & 0xf); in ntfs_mapping_pairs_decompress() 866 for (deltaxcn = (s8)buf[b--]; b > b2; b--) in ntfs_mapping_pairs_decompress()
|
/linux-4.1.27/include/video/ |
D | newport.h | 27 struct { volatile unsigned char b0, b1, b2, b3; } bybytes; member
|
/linux-4.1.27/Documentation/scsi/ |
D | aacraid.txt | 100 9005:0285:9005:02b2 ICP (Voodoo 8 internal 8 external)
|
/linux-4.1.27/Documentation/input/ |
D | elantech.txt | 447 n4 vf w1 w0 . . . b2 453 b2 (on EF113 only, 0 otherwise), b2.R.L indicates one button pressed:
|
D | alps.txt | 296 packet-fmt b7 b6 b5 b4 b3 b2 b1 b0
|
/linux-4.1.27/drivers/block/ |
D | amiflop.c | 1132 register unsigned char *enc, b2, b1; in dos_encode_byte() local 1137 b2=b1>>4; in dos_encode_byte() 1139 word=enc[b2] <<8 | enc [b1]; in dos_encode_byte()
|
/linux-4.1.27/fs/ext4/ |
D | extents.c | 1879 ext4_lblk_t b1, b2; in ext4_ext_check_overlap() local 1888 b2 = EXT4_LBLK_CMASK(sbi, le32_to_cpu(path[depth].p_ext->ee_block)); in ext4_ext_check_overlap() 1894 if (b2 < b1) { in ext4_ext_check_overlap() 1895 b2 = ext4_ext_next_allocated_block(path); in ext4_ext_check_overlap() 1896 if (b2 == EXT_MAX_BLOCKS) in ext4_ext_check_overlap() 1898 b2 = EXT4_LBLK_CMASK(sbi, b2); in ext4_ext_check_overlap() 1909 if (b1 + len1 > b2) { in ext4_ext_check_overlap() 1910 newext->ee_len = cpu_to_le16(b2 - b1); in ext4_ext_check_overlap()
|
D | mballoc.c | 507 unsigned char *b1, *b2; in mb_cmp_bitmaps() local 510 b2 = (unsigned char *) bitmap; in mb_cmp_bitmaps() 512 if (b1[i] != b2[i]) { in mb_cmp_bitmaps() 517 e4b->bd_group, i, i * 8, b1[i], b2[i]); in mb_cmp_bitmaps()
|
/linux-4.1.27/sound/pci/au88x0/ |
D | au88x0_a3d.c | 105 a3dsrc_GetAtmosCurrent(a3dsrc_t * a, short *bb01, short *ab01, short *b2, 121 *b2 =
|
/linux-4.1.27/net/nfc/ |
D | digital_technology.c | 109 u8 b2; member 373 sel_req->b2 = 0x70; in digital_in_send_sel_req()
|
/linux-4.1.27/arch/blackfin/mach-bf548/include/mach/ |
D | defBF54x_base.h | 2223 #define MUX(b15,b14,b13,b12,b11,b10,b9,b8,b7,b6,b5,b4,b3,b2,b1,b0) \ argument 2237 (((b2) &3) << 4) | \
|
/linux-4.1.27/drivers/usb/serial/ |
D | iuu_phoenix.c | 345 u8 b2, u8 freq) in iuu_rgbf_fill_buffer() argument 353 *buf++ = b2; in iuu_rgbf_fill_buffer()
|
/linux-4.1.27/Documentation/DocBook/media/ |
D | dvbstb.png.b64 | 309 b2+Ym5tDCCF1VRsWFob3338fx44dA/CyobSHhweAl1VxevXqhRUrViAwMBDbtm2Do6MjDAwMpBO6
|
/linux-4.1.27/drivers/video/fbdev/ |
D | cyber2000fb.c | 569 #define ENCODE_BIT(v, b1, m, b2) ((((v) >> (b1)) & (m)) << (b2)) in cyber2000fb_decode_crtc() argument
|
D | mx3fb.c | 357 uint32_t b0, b1, b2; member 613 mx3fb_write_reg(mx3fb, map->b2, DI_DISP3_B2_MAP); in sdc_init_panel()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/phy/ |
D | phy_cmn.c | 224 u32 b0, b1, b2; in read_radio_id() local 231 b2 = (u32) bcma_read16(pi->d11core, D11REGOFFS(radioregdata)); in read_radio_id() 233 id = ((b0 & 0xf) << 28) | (((b2 << 8) | b1) << 12) | ((b0 >> 4) in read_radio_id()
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | ftest.sa | 340 dc.l $01700000,$015cf23b,$9c000170,$000001b2
|
D | itest.sa | 476 dc.l $000031b2,$4a0066ff,$000031d8,$52aeff78 652 dc.l $000026b2,$4a0066ff,$000026d8,$52aeff78 1004 dc.l $000010b2,$4a0066ff,$000010d8,$52aeff78
|
D | pfpsp.sa | 622 dc.l $0c00009c,$670000b2,$0c000098,$67000074
|
D | fplsp.sa | 1196 dc.l $000028c6,$f23a4822,$f5ba60ff,$000028b2
|
/linux-4.1.27/fs/btrfs/ |
D | inode.c | 2163 struct sa_defrag_extent_backref *b2) in backref_comp() argument 2165 if (b1->root_id < b2->root_id) in backref_comp() 2167 else if (b1->root_id > b2->root_id) in backref_comp() 2170 if (b1->inum < b2->inum) in backref_comp() 2172 else if (b1->inum > b2->inum) in backref_comp() 2175 if (b1->file_pos < b2->file_pos) in backref_comp() 2177 else if (b1->file_pos > b2->file_pos) in backref_comp()
|
/linux-4.1.27/firmware/keyspan_pda/ |
D | keyspan_pda.S | 686 mov a, r3 ; wValue[0] holds new bits: b7 is new DTR, b2 is new RTS
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | si.c | 2083 fixed20_12 a, b1, b2; in dce6_dmif_request_bandwidth() local 2096 b2.full = dfixed_mul(a, sclk); in dce6_dmif_request_bandwidth() 2102 min_bandwidth = min(dfixed_trunc(b1), dfixed_trunc(b2)); in dce6_dmif_request_bandwidth()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/ |
D | main.c | 1882 uint b2 = boardrev & 0xf; in brcms_c_validboardtype() local 1896 || (b2 > 9)) in brcms_c_validboardtype()
|