/linux-4.4.14/drivers/net/hamradio/ |
D | baycom_ser_hdx.c | 148 static inline void baycom_int_freq(struct baycom_state *bc) in baycom_int_freq() argument 155 bc->debug_vals.cur_intcnt++; in baycom_int_freq() 156 if (time_after_eq(cur_jiffies, bc->debug_vals.last_jiffies + HZ)) { in baycom_int_freq() 157 bc->debug_vals.last_jiffies = cur_jiffies; in baycom_int_freq() 158 bc->debug_vals.last_intcnt = bc->debug_vals.cur_intcnt; in baycom_int_freq() 159 bc->debug_vals.cur_intcnt = 0; in baycom_int_freq() 160 bc->debug_vals.last_pllcorr = bc->debug_vals.cur_pllcorr; in baycom_int_freq() 161 bc->debug_vals.cur_pllcorr = 0; in baycom_int_freq() 197 #define SER12_ARB_DIVIDER(bc) (bc->opt_dcd ? 24 : 36) argument 199 #define SER12_DCD_INTERVAL(bc) (bc->opt_dcd ? 12 : 240) argument [all …]
|
D | baycom_epp.c | 275 #define tenms_to_flags(bc,tenms) ((tenms * bc->bitrate) / 800) argument 279 static inline void baycom_int_freq(struct baycom_state *bc) in baycom_int_freq() argument 286 bc->debug_vals.cur_intcnt++; in baycom_int_freq() 287 if (time_after_eq(cur_jiffies, bc->debug_vals.last_jiffies + HZ)) { in baycom_int_freq() 288 bc->debug_vals.last_jiffies = cur_jiffies; in baycom_int_freq() 289 bc->debug_vals.last_intcnt = bc->debug_vals.cur_intcnt; in baycom_int_freq() 290 bc->debug_vals.cur_intcnt = 0; in baycom_int_freq() 291 bc->debug_vals.last_pllcorr = bc->debug_vals.cur_pllcorr; in baycom_int_freq() 292 bc->debug_vals.cur_pllcorr = 0; in baycom_int_freq() 307 static int eppconfig(struct baycom_state *bc) in eppconfig() argument [all …]
|
D | baycom_ser_fdx.c | 159 static inline void baycom_int_freq(struct baycom_state *bc) in baycom_int_freq() argument 166 bc->debug_vals.cur_intcnt++; in baycom_int_freq() 167 if (time_after_eq(cur_jiffies, bc->debug_vals.last_jiffies + HZ)) { in baycom_int_freq() 168 bc->debug_vals.last_jiffies = cur_jiffies; in baycom_int_freq() 169 bc->debug_vals.last_intcnt = bc->debug_vals.cur_intcnt; in baycom_int_freq() 170 bc->debug_vals.cur_intcnt = 0; in baycom_int_freq() 171 bc->debug_vals.last_pllcorr = bc->debug_vals.cur_pllcorr; in baycom_int_freq() 172 bc->debug_vals.cur_pllcorr = 0; in baycom_int_freq() 231 static __inline__ void ser12_rx(struct net_device *dev, struct baycom_state *bc, struct timeval *tv… in ser12_rx() argument 234 int bdus8 = bc->baud_us >> 3; in ser12_rx() [all …]
|
D | baycom_par.c | 159 static void __inline__ baycom_int_freq(struct baycom_state *bc) in baycom_int_freq() argument 166 bc->debug_vals.cur_intcnt++; in baycom_int_freq() 167 if (time_after_eq(cur_jiffies, bc->debug_vals.last_jiffies + HZ)) { in baycom_int_freq() 168 bc->debug_vals.last_jiffies = cur_jiffies; in baycom_int_freq() 169 bc->debug_vals.last_intcnt = bc->debug_vals.cur_intcnt; in baycom_int_freq() 170 bc->debug_vals.cur_intcnt = 0; in baycom_int_freq() 171 bc->debug_vals.last_pllcorr = bc->debug_vals.cur_pllcorr; in baycom_int_freq() 172 bc->debug_vals.cur_pllcorr = 0; in baycom_int_freq() 195 static __inline__ void par96_tx(struct net_device *dev, struct baycom_state *bc) in par96_tx() argument 198 unsigned int data = hdlcdrv_getbits(&bc->hdrv); in par96_tx() [all …]
|
/linux-4.4.14/drivers/tty/ |
D | ehv_bytechan.c | 90 static void enable_tx_interrupt(struct ehv_bc_data *bc) in enable_tx_interrupt() argument 92 if (!bc->tx_irq_enabled) { in enable_tx_interrupt() 93 enable_irq(bc->tx_irq); in enable_tx_interrupt() 94 bc->tx_irq_enabled = 1; in enable_tx_interrupt() 98 static void disable_tx_interrupt(struct ehv_bc_data *bc) in disable_tx_interrupt() argument 100 if (bc->tx_irq_enabled) { in disable_tx_interrupt() 101 disable_irq_nosync(bc->tx_irq); in disable_tx_interrupt() 102 bc->tx_irq_enabled = 0; in disable_tx_interrupt() 338 struct ehv_bc_data *bc = data; in ehv_bc_tty_rx_isr() local 348 ev_byte_channel_poll(bc->handle, &rx_count, &tx_count); in ehv_bc_tty_rx_isr() [all …]
|
/linux-4.4.14/kernel/time/ |
D | tick-broadcast.c | 40 static void tick_resume_broadcast_oneshot(struct clock_event_device *bc); 43 static inline void tick_resume_broadcast_oneshot(struct clock_event_device *bc) { } in tick_resume_broadcast_oneshot() argument 62 static void tick_broadcast_start_periodic(struct clock_event_device *bc) in tick_broadcast_start_periodic() argument 64 if (bc) in tick_broadcast_start_periodic() 65 tick_setup_periodic(bc, 1); in tick_broadcast_start_periodic() 160 struct clock_event_device *bc = tick_broadcast_device.evtdev; in tick_device_uses_broadcast() local 177 tick_broadcast_start_periodic(bc); in tick_device_uses_broadcast() 179 tick_broadcast_setup_oneshot(bc); in tick_device_uses_broadcast() 218 if (cpumask_empty(tick_broadcast_mask) && bc) in tick_device_uses_broadcast() 219 clockevents_shutdown(bc); in tick_device_uses_broadcast() [all …]
|
D | tick-broadcast-hrtimer.c | 44 static int bc_set_next(ktime_t expires, struct clock_event_device *bc) in bc_set_next() argument 70 bc->bound_on = smp_processor_id(); in bc_set_next() 71 } else if (bc->bound_on == smp_processor_id()) { in bc_set_next()
|
D | tick-internal.h | 129 extern void tick_broadcast_setup_oneshot(struct clock_event_device *bc); 137 static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc) { BUG(); } in tick_broadcast_setup_oneshot() argument
|
D | timeconst.bc | 42 print "/* Automatically generated by kernel/time/timeconst.bc */\n"
|
/linux-4.4.14/drivers/isdn/hardware/mISDN/ |
D | netjet.c | 91 struct tiger_ch bc[2]; member 109 card->bc[0].bch.debug = debug; in _set_debug() 110 card->bc[1].bch.debug = debug; in _set_debug() 188 fill_mem(struct tiger_ch *bc, u32 idx, u32 cnt, u32 fill) in fill_mem() argument 190 struct tiger_hw *card = bc->bch.hw; in fill_mem() 194 bc->bch.nr, fill, cnt, idx, card->send.idx); in fill_mem() 195 if (bc->bch.nr & 2) { in fill_mem() 211 mode_tiger(struct tiger_ch *bc, u32 protocol) in mode_tiger() argument 213 struct tiger_hw *card = bc->bch.hw; in mode_tiger() 216 bc->bch.nr, bc->bch.state, protocol); in mode_tiger() [all …]
|
D | w6692.c | 82 struct w6692_ch bc[2]; member 99 card->bc[0].bch.debug = debug; in _set_debug() 100 card->bc[1].bch.debug = debug; in _set_debug() 142 ReadW6692B(struct w6692_ch *bc, u8 offset) in ReadW6692B() argument 144 return inb(bc->addr + offset); in ReadW6692B() 148 WriteW6692B(struct w6692_ch *bc, u8 offset, u8 value) in WriteW6692B() argument 150 outb(value, bc->addr + offset); in WriteW6692B() 670 struct w6692_ch *wch = &card->bc[ch]; in W6692B_interrupt() 858 w6692_mode(&card->bc[0], ISDN_P_NONE); in initW6692() 859 w6692_mode(&card->bc[1], ISDN_P_NONE); in initW6692() [all …]
|
D | hfcpci.c | 1252 mode_hfcpci(struct bchannel *bch, int bc, int protocol) in mode_hfcpci() argument 1261 bch->state, protocol, bch->nr, bc); in mode_hfcpci() 1263 fifo2 = bc; in mode_hfcpci() 1264 pcm_mode = (bc >> 24) & 0xff; in mode_hfcpci() 1270 rx_slot = (bc >> 8) & 0xff; in mode_hfcpci() 1271 tx_slot = (bc >> 16) & 0xff; in mode_hfcpci() 1272 bc = bc & 0xff; in mode_hfcpci() 1280 if (bc & 2) { in mode_hfcpci() 1297 bch->nr = bc; in mode_hfcpci() 1301 if (bc & 2) { in mode_hfcpci() [all …]
|
/linux-4.4.14/arch/mips/pci/ |
D | pci-ip27.c | 47 struct bridge_controller *bc; in bridge_probe() local 60 bc = &bridges[num_bridges]; in bridge_probe() 62 bc->pc.pci_ops = &bridge_pci_ops; in bridge_probe() 63 bc->pc.mem_resource = &bc->mem; in bridge_probe() 64 bc->pc.io_resource = &bc->io; in bridge_probe() 66 bc->pc.index = num_bridges; in bridge_probe() 68 bc->mem.name = "Bridge PCI MEM"; in bridge_probe() 69 bc->pc.mem_offset = offset; in bridge_probe() 70 bc->mem.start = 0; in bridge_probe() 71 bc->mem.end = ~0UL; in bridge_probe() [all …]
|
D | ops-bridge.c | 46 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus); in pci_conf0_read_config() local 47 bridge_t *bridge = bc->base; in pci_conf0_read_config() 106 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus); in pci_conf1_read_config() local 107 bridge_t *bridge = bc->base; in pci_conf1_read_config() 179 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus); in pci_conf0_write_config() local 180 bridge_t *bridge = bc->base; in pci_conf0_write_config() 245 struct bridge_controller *bc = BRIDGE_CONTROLLER(bus); in pci_conf1_write_config() local 246 bridge_t *bridge = bc->base; in pci_conf1_write_config()
|
/linux-4.4.14/block/ |
D | bsg.c | 91 static void bsg_free_command(struct bsg_command *bc) in bsg_free_command() argument 93 struct bsg_device *bd = bc->bd; in bsg_free_command() 96 kmem_cache_free(bsg_cmd_cachep, bc); in bsg_free_command() 107 struct bsg_command *bc = ERR_PTR(-EINVAL); in bsg_alloc_command() local 117 bc = kmem_cache_zalloc(bsg_cmd_cachep, GFP_KERNEL); in bsg_alloc_command() 118 if (unlikely(!bc)) { in bsg_alloc_command() 121 bc = ERR_PTR(-ENOMEM); in bsg_alloc_command() 125 bc->bd = bd; in bsg_alloc_command() 126 INIT_LIST_HEAD(&bc->list); in bsg_alloc_command() 127 dprintk("%s: returning free cmd %p\n", bd->name, bc); in bsg_alloc_command() [all …]
|
/linux-4.4.14/fs/ocfs2/ |
D | blockcheck.c | 392 struct ocfs2_block_check *bc) in ocfs2_block_check_compute() argument 397 memset(bc, 0, sizeof(struct ocfs2_block_check)); in ocfs2_block_check_compute() 408 bc->bc_crc32e = cpu_to_le32(crc); in ocfs2_block_check_compute() 409 bc->bc_ecc = cpu_to_le16((u16)ecc); in ocfs2_block_check_compute() 421 struct ocfs2_block_check *bc, in ocfs2_block_check_validate() argument 431 bc_crc32e = le32_to_cpu(bc->bc_crc32e); in ocfs2_block_check_validate() 432 bc_ecc = le16_to_cpu(bc->bc_ecc); in ocfs2_block_check_validate() 434 memset(bc, 0, sizeof(struct ocfs2_block_check)); in ocfs2_block_check_validate() 463 bc->bc_crc32e = cpu_to_le32(bc_crc32e); in ocfs2_block_check_validate() 464 bc->bc_ecc = cpu_to_le16(bc_ecc); in ocfs2_block_check_validate() [all …]
|
D | blockcheck.h | 44 struct ocfs2_block_check *bc); 46 struct ocfs2_block_check *bc); 49 struct ocfs2_block_check *bc); 52 struct ocfs2_block_check *bc); 56 struct ocfs2_block_check *bc); 58 struct ocfs2_block_check *bc, 61 struct ocfs2_block_check *bc); 63 struct ocfs2_block_check *bc,
|
/linux-4.4.14/drivers/staging/wilc1000/ |
D | wilc_spi.c | 116 u8 bc[9]; in spi_cmd() local 120 bc[0] = cmd; in spi_cmd() 123 bc[1] = (u8)(adr >> 16); in spi_cmd() 124 bc[2] = (u8)(adr >> 8); in spi_cmd() 125 bc[3] = (u8)adr; in spi_cmd() 130 bc[1] = (u8)(adr >> 8); in spi_cmd() 132 bc[1] |= BIT(7); in spi_cmd() 133 bc[2] = (u8)adr; in spi_cmd() 134 bc[3] = 0x00; in spi_cmd() 139 bc[1] = 0x00; in spi_cmd() [all …]
|
/linux-4.4.14/arch/mips/sgi-ip27/ |
D | ip27-irq-pci.c | 137 struct bridge_controller *bc; in startup_bridge_irq() local 144 bc = IRQ_TO_BRIDGE(d->irq); in startup_bridge_irq() 145 bridge = bc->base; in startup_bridge_irq() 153 bridge->b_int_addr[pin].addr = (0x20000 | swlevel | (bc->nasid << 8)); in startup_bridge_irq() 185 struct bridge_controller *bc = IRQ_TO_BRIDGE(d->irq); in shutdown_bridge_irq() local 186 bridge_t *bridge = bc->base; in shutdown_bridge_irq() 235 int request_bridge_irq(struct bridge_controller *bc) in request_bridge_irq() argument 248 cpu = bc->irq_cpu; in request_bridge_irq()
|
/linux-4.4.14/arch/m32r/lib/ |
D | ashxdi3.S | 25 bc 1f 45 bc 1f 62 bc 1f 82 bc 1f 102 bc 1f 119 bc 1f 143 bc 1f 169 bc 1f 193 bc 1f 220 bc 1f [all …]
|
D | memset.S | 28 bc byte_set 39 bc byte_set 72 bc byte_set_wrap1 106 bc byte_set 119 bc byte_set 159 bc byte_set_wrap1
|
D | strlen.S | 53 bc.s strlen_exit || cmpz r0
|
/linux-4.4.14/net/ipv4/ |
D | udp_diag.c | 23 struct nlattr *bc) in sk_diag_dump() argument 25 if (!inet_diag_bc_sk(bc, sk)) in sk_diag_dump() 97 const struct inet_diag_req_v2 *r, struct nlattr *bc) in udp_dump() argument 135 if (sk_diag_dump(sk, skb, cb, r, bc) < 0) { in udp_dump() 150 const struct inet_diag_req_v2 *r, struct nlattr *bc) in udp_diag_dump() argument 152 udp_dump(&udp_table, skb, cb, r, bc); in udp_diag_dump() 178 struct nlattr *bc) in udplite_diag_dump() argument 180 udp_dump(&udplite_table, skb, cb, r, bc); in udplite_diag_dump()
|
D | inet_diag.c | 463 const void *bc = nla_data(_bc); in inet_diag_bc_run() local 468 const struct inet_diag_bc_op *op = bc; in inet_diag_bc_run() 536 bc += op->yes; in inet_diag_bc_run() 539 bc += op->no; in inet_diag_bc_run() 562 int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk) in inet_diag_bc_sk() argument 567 if (!bc) in inet_diag_bc_sk() 576 return inet_diag_bc_run(bc, &entry); in inet_diag_bc_sk() 580 static int valid_cc(const void *bc, int len, int cc) in valid_cc() argument 583 const struct inet_diag_bc_op *op = bc; in valid_cc() 592 bc += op->yes; in valid_cc() [all …]
|
D | tcp_diag.c | 38 const struct inet_diag_req_v2 *r, struct nlattr *bc) in tcp_diag_dump() argument 40 inet_diag_dump_icsk(&tcp_hashinfo, skb, cb, r, bc); in tcp_diag_dump()
|
/linux-4.4.14/drivers/spmi/ |
D | spmi-pmic-arb.c | 162 u32 (*fmt_cmd)(u8 opc, u8 sid, u16 addr, u8 bc); 189 static void pa_read_data(struct spmi_pmic_arb_dev *dev, u8 *buf, u32 reg, u8 bc) in pa_read_data() argument 192 memcpy(buf, &data, (bc & 3) + 1); in pa_read_data() 202 pa_write_data(struct spmi_pmic_arb_dev *dev, const u8 *buf, u32 reg, u8 bc) in pa_write_data() argument 205 memcpy(&data, buf, (bc & 3) + 1); in pa_write_data() 297 u8 bc = len - 1; in pmic_arb_read_cmd() local 302 if (bc >= PMIC_ARB_MAX_TRANS_BYTES) { in pmic_arb_read_cmd() 319 cmd = pmic_arb->ver_ops->fmt_cmd(opc, sid, addr, bc); in pmic_arb_read_cmd() 328 min_t(u8, bc, 3)); in pmic_arb_read_cmd() 330 if (bc > 3) in pmic_arb_read_cmd() [all …]
|
/linux-4.4.14/sound/soc/intel/atom/ |
D | sst-atom-controls.c | 265 struct sst_algo_control *bc) in sst_send_algo_cmd() argument 271 len = sizeof(cmd->dst) + sizeof(cmd->command_id) + bc->max; in sst_send_algo_cmd() 277 SST_FILL_DESTINATION(2, cmd->dst, bc->pipe_id, bc->module_id); in sst_send_algo_cmd() 278 cmd->command_id = bc->cmd_id; in sst_send_algo_cmd() 279 memcpy(cmd->params, bc->params, bc->max); in sst_send_algo_cmd() 282 SST_FLAG_BLOCKED, bc->task_id, 0, cmd, len); in sst_send_algo_cmd() 298 struct sst_algo_control *bc; in sst_find_and_send_pipe_algo() local 304 bc = (void *)algo->kctl->private_value; in sst_find_and_send_pipe_algo() 308 ret = sst_send_algo_cmd(drv, bc); in sst_find_and_send_pipe_algo() 318 struct sst_algo_control *bc = (void *)kcontrol->private_value; in sst_algo_bytes_ctl_info() local [all …]
|
/linux-4.4.14/drivers/isdn/hisax/ |
D | hscx.c | 41 modehscx(struct BCState *bcs, int mode, int bc) in modehscx() argument 48 'A' + hscx, mode, bc); in modehscx() 50 bcs->channel = bc; in modehscx() 64 bc = 1 - bc; in modehscx() 66 if (bc == 0) { in modehscx() 137 modehscx(bcs, st->l1.mode, st->l1.bc); in hscx_l2l1() 148 modehscx(bcs, 0, st->l1.bc); in hscx_l2l1() 206 bcs->channel = st->l1.bc; in setstack_hscx()
|
D | jade.c | 78 modejade(struct BCState *bcs, int mode, int bc) in modejade() argument 84 debugl1(cs, "jade %c mode %d ichan %d", 'A' + jade, mode, bc); in modejade() 87 bcs->channel = bc; in modejade() 101 if (bc == 0) { in modejade() 172 modejade(bcs, st->l1.mode, st->l1.bc); in jade_l2l1() 183 modejade(bcs, 0, st->l1.bc); in jade_l2l1() 242 bcs->channel = st->l1.bc; in setstack_jade()
|
D | hfc_2bs0.c | 399 mode_hfc(struct BCState *bcs, int mode, int bc) in mode_hfc() argument 405 mode, bc, bcs->channel); in mode_hfc() 407 bcs->channel = bc; in mode_hfc() 411 if (bc) { in mode_hfc() 421 cs->hw.hfc.ctmt &= ~(1 << bc); /* set HDLC mode */ in mode_hfc() 424 if (bc) { in mode_hfc() 435 if (bc) { in mode_hfc() 492 mode_hfc(bcs, st->l1.mode, st->l1.bc); in hfc_l2l1() 503 mode_hfc(bcs, 0, st->l1.bc); in hfc_l2l1() 544 bcs->channel = st->l1.bc; in setstack_hfc()
|
D | ipacx.c | 48 static void bch_mode(struct BCState *bcs, int mode, int bc); 487 bch_mode(bcs, st->l1.mode, st->l1.bc); in bch_l2l1() 498 bch_mode(bcs, 0, st->l1.bc); in bch_l2l1() 713 bch_mode(struct BCState *bcs, int mode, int bc) in bch_mode() argument 718 bc = bc ? 1 : 0; // in case bc is greater than 1 in bch_mode() 720 debugl1(cs, "mode_bch() switch B-%d mode %d chan %d", hscx, mode, bc); in bch_mode() 722 bcs->channel = bc; in bch_mode() 727 cs->writeisac(cs, IPACX_BCHA_TSDP_BC1, 0x80 | bc); in bch_mode() 732 cs->writeisac(cs, IPACX_BCHB_TSDP_BC1, 0x80 | bc); in bch_mode() 815 bcs->channel = st->l1.bc; in bch_setstack()
|
D | netjet.c | 87 mode_tiger(struct BCState *bcs, int mode, int bc) in mode_tiger() argument 94 mode, bc, bcs->channel); in mode_tiger() 96 bcs->channel = bc; in mode_tiger() 100 NETJET_DMA_TXSIZE, bc, 0xff); in mode_tiger() 115 led = bc & 0x01; in mode_tiger() 127 NETJET_DMA_TXSIZE, bc, 0xff); in mode_tiger() 136 NETJET_DMA_TXSIZE, !bc, 0xff); in mode_tiger() 149 led = bc & 0x01; in mode_tiger() 830 mode_tiger(bcs, st->l1.mode, st->l1.bc); in tiger_l2l1() 833 bcs->cs->cardmsg(bcs->cs, MDL_BC_ASSIGN, (void *)(&st->l1.bc)); in tiger_l2l1() [all …]
|
D | avm_pci.c | 196 modehdlc(struct BCState *bcs, int mode, int bc) in modehdlc() argument 203 'A' + hdlc, bcs->mode, mode, hdlc, bc); in modehdlc() 208 bcs->channel = bc; in modehdlc() 209 bc = 0; in modehdlc() 217 bcs->channel = bc; in modehdlc() 221 bcs->channel = bc; in modehdlc() 232 bcs->channel = bc; in modehdlc() 523 modehdlc(bcs, st->l1.mode, st->l1.bc); in hdlc_l2l1() 534 modehdlc(bcs, 0, st->l1.bc); in hdlc_l2l1() 591 bcs->channel = st->l1.bc; in setstack_hdlc()
|
D | hscx.h | 38 extern void modehscx(struct BCState *bcs, int mode, int bc);
|
D | hfc_sx.c | 1031 mode_hfcsx(struct BCState *bcs, int mode, int bc) in mode_hfcsx() argument 1038 mode, bc, bcs->channel); in mode_hfcsx() 1040 bcs->channel = bc; in mode_hfcsx() 1041 fifo2 = bc; in mode_hfcsx() 1046 if (bc) { in mode_hfcsx() 1062 if (bc) { in mode_hfcsx() 1076 if (bc) { in mode_hfcsx() 1094 if (bc) { in mode_hfcsx() 1112 if (bc) { in mode_hfcsx() 1181 mode_hfcsx(bcs, st->l1.mode, st->l1.bc); in hfcsx_l2l1() [all …]
|
D | hfc_2bds0.c | 405 mode_2bs0(struct BCState *bcs, int mode, int bc) in mode_2bs0() argument 411 mode, bc, bcs->channel); in mode_2bs0() 413 bcs->channel = bc; in mode_2bs0() 416 if (bc) { in mode_2bs0() 425 if (bc) { in mode_2bs0() 436 if (bc) { in mode_2bs0() 492 mode_2bs0(bcs, st->l1.mode, st->l1.bc); in hfc_l2l1() 503 mode_2bs0(bcs, 0, st->l1.bc); in hfc_l2l1() 542 bcs->channel = st->l1.bc; in setstack_2b()
|
D | hfc_pci.c | 1268 mode_hfcpci(struct BCState *bcs, int mode, int bc) in mode_hfcpci() argument 1275 mode, bc, bcs->channel); in mode_hfcpci() 1277 bcs->channel = bc; in mode_hfcpci() 1278 fifo2 = bc; in mode_hfcpci() 1283 if (bc) { in mode_hfcpci() 1299 if (bc) { in mode_hfcpci() 1317 if (bc) { in mode_hfcpci() 1339 if (bc) { in mode_hfcpci() 1361 if (bc) { in mode_hfcpci() 1429 mode_hfcpci(bcs, st->l1.mode, st->l1.bc); in hfcpci_l2l1() [all …]
|
D | elsa_ser.c | 423 extern void modehscx(struct BCState *bcs, int mode, int bc); 568 set_arcofi(bcs->cs, st->l1.bc); in modem_l2l1() 574 bcs->cs->dc.isac.arcofi_bc = st->l1.bc; in modem_l2l1() 588 bcs->channel = st->l1.bc; in setstack_elsa()
|
D | isar.c | 1397 modeisar(struct BCState *bcs, int mode, int bc) in modeisar() argument 1403 bcs->channel = bc; in modeisar() 1440 bcs->hw.isar.dpath, bcs->mode, mode, bc); in modeisar() 1645 ret = modeisar(bcs, st->l1.mode, st->l1.bc); in isar_l2l1() 1654 ret = modeisar(bcs, st->l1.mode, st->l1.bc); in isar_l2l1() 1682 modeisar(bcs, 0, st->l1.bc); in isar_l2l1() 1734 bcs->channel = st->l1.bc; in setstack_isar()
|
D | isdnl1.c | 362 init_bcstate(struct IsdnCardState *cs, int bc) in init_bcstate() argument 364 struct BCState *bcs = cs->bcs + bc; in init_bcstate() 367 bcs->channel = bc; in init_bcstate()
|
D | hisax.h | 221 int mode, bc; member 1251 void init_bcstate(struct IsdnCardState *cs, int bc);
|
D | w6692.c | 797 W6692Bmode(bcs, st->l1.mode, st->l1.bc); in W6692_l2l1() 808 W6692Bmode(bcs, 0, st->l1.bc); in W6692_l2l1() 866 bcs->channel = st->l1.bc; in setstack_w6692()
|
D | elsa.c | 136 static void set_arcofi(struct IsdnCardState *cs, int bc); 509 set_arcofi(struct IsdnCardState *cs, int bc) { in set_arcofi() argument 510 cs->dc.isac.arcofi_bc = bc; in set_arcofi()
|
D | config.c | 1857 bcs->channel = st->l1.bc; in hisax_bc_setstack() 1859 bcs->hw.b_if = hisax_d_if->b_if[st->l1.bc]; in hisax_bc_setstack() 1860 hisax_d_if->b_if[st->l1.bc]->bcs = bcs; in hisax_bc_setstack()
|
D | callc.c | 1271 st->l1.bc = chanp->chan & 1; in init_b_st() 1273 st->l1.bc = chanp->proc->para.bchannel - 1; in init_b_st()
|
/linux-4.4.14/arch/parisc/kernel/ |
D | drivers.c | 295 memset(&path->bc, -1, 6); in get_node_path() 300 path->bc[i--] = PCI_SLOT(devfn); in get_node_path() 307 path->bc[i--] = PCI_SLOT(devfn) | (PCI_FUNC(devfn)<< 5); in get_node_path() 309 path->bc[i--] = to_parisc_device(dev)->hw_path; in get_node_path() 319 if (path->bc[i] == -1) in print_hwpath() 321 output += sprintf(output, "%u/", (unsigned char) path->bc[i]); in print_hwpath() 392 if (path.bc[i] == -1) in setup_bus_id() 394 output += sprintf(output, "%u:", (unsigned char) path.bc[i]); in setup_bus_id() 467 if (modpath->bc[i] == -1) in create_parisc_device() 469 parent = &alloc_tree_node(parent, modpath->bc[i])->dev; in create_parisc_device() [all …]
|
D | inventory.c | 469 memset(module_path.path.bc, 0xff, 6); in snake_inventory() 475 memset(module_path.path.bc, 0xff, 4); in snake_inventory() 476 module_path.path.bc[4] = mod; in snake_inventory() 479 module_path.path.bc[5] = 0; in snake_inventory()
|
/linux-4.4.14/drivers/media/platform/davinci/ |
D | isif.c | 324 static void isif_config_bclamp(struct isif_black_clamp *bc) in isif_config_bclamp() argument 332 regw(bc->dc_offset, CLDCOFST); in isif_config_bclamp() 334 if (bc->en) { in isif_config_bclamp() 335 val = bc->bc_mode_color << ISIF_BC_MODE_COLOR_SHIFT; in isif_config_bclamp() 338 val = val | 1 | (bc->horz.mode << ISIF_HORZ_BC_MODE_SHIFT); in isif_config_bclamp() 342 if (bc->horz.mode != ISIF_HORZ_BC_DISABLE) { in isif_config_bclamp() 352 val = bc->horz.win_count_calc | in isif_config_bclamp() 353 ((!!bc->horz.base_win_sel_calc) << in isif_config_bclamp() 355 ((!!bc->horz.clamp_pix_limit) << in isif_config_bclamp() 357 (bc->horz.win_h_sz_calc << in isif_config_bclamp() [all …]
|
/linux-4.4.14/net/sunrpc/xprtrdma/ |
D | svc_rdma_sendto.c | 226 int bc; in send_write() local 244 for (bc = xdr_off, xdr_sge_no = 1; bc && xdr_sge_no < vec->count; in send_write() 246 if (vec->sge[xdr_sge_no].iov_len > bc) in send_write() 248 bc -= vec->sge[xdr_sge_no].iov_len; in send_write() 251 sge_off = bc; in send_write() 252 bc = write_len; in send_write() 256 while (bc != 0) { in send_write() 258 bc, vec->sge[xdr_sge_no].iov_len-sge_off); in send_write() 277 bc -= sge_bytes; in send_write() 297 return write_len - bc; in send_write()
|
D | svc_rdma_recvfrom.c | 64 u32 bc; in rdma_build_arg_xdr() local 80 bc = byte_count - rqstp->rq_arg.head[0].iov_len; in rdma_build_arg_xdr() 83 rqstp->rq_arg.page_len = bc; in rdma_build_arg_xdr() 94 while (bc && sge_no < ctxt->count) { in rdma_build_arg_xdr() 98 bc -= min_t(u32, bc, ctxt->sge[sge_no].length); in rdma_build_arg_xdr() 106 bc = sge_no; in rdma_build_arg_xdr() 111 ctxt->count = bc; in rdma_build_arg_xdr()
|
/linux-4.4.14/include/linux/ |
D | inet_diag.h | 17 struct nlattr *bc); 39 struct nlattr *bc);
|
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_sriov_common.c | 139 struct qlcnic_back_channel *bc; in qlcnic_sriov_init() local 154 bc = &sriov->bc; in qlcnic_sriov_init() 170 bc->bc_trans_wq = wq; in qlcnic_sriov_init() 179 bc->bc_async_wq = wq; in qlcnic_sriov_init() 180 INIT_LIST_HEAD(&bc->async_list); in qlcnic_sriov_init() 217 destroy_workqueue(bc->bc_async_wq); in qlcnic_sriov_init() 220 destroy_workqueue(bc->bc_trans_wq); in qlcnic_sriov_init() 255 struct qlcnic_back_channel *bc = &sriov->bc; in __qlcnic_sriov_cleanup() local 262 qlcnic_sriov_cleanup_async_list(bc); in __qlcnic_sriov_cleanup() 263 destroy_workqueue(bc->bc_async_wq); in __qlcnic_sriov_cleanup() [all …]
|
D | qlcnic_sriov_pf.c | 410 struct qlcnic_back_channel *bc = &sriov->bc; in qlcnic_sriov_pf_del_flr_queue() local 416 destroy_workqueue(bc->bc_flr_wq); in qlcnic_sriov_pf_del_flr_queue() 421 struct qlcnic_back_channel *bc = &adapter->ahw->sriov->bc; in qlcnic_sriov_pf_create_flr_queue() local 430 bc->bc_flr_wq = wq; in qlcnic_sriov_pf_create_flr_queue() 1706 queue_work(sriov->bc.bc_flr_wq, &vf->flr_work); in qlcnic_sriov_schedule_flr()
|
D | qlcnic_sriov.h | 183 struct qlcnic_back_channel bc; member
|
D | qlcnic_main.c | 1960 qlcnic_sriov_cleanup_async_list(&adapter->ahw->sriov->bc); in __qlcnic_down()
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | perf_event_intel_cqm.c | 330 struct perf_cgroup *bc = b->cgrp; in __conflict_event() local 336 WARN_ON_ONCE(ac == bc); in __conflict_event() 338 if (cgroup_is_descendant(ac->css.cgroup, bc->css.cgroup) || in __conflict_event() 339 cgroup_is_descendant(bc->css.cgroup, ac->css.cgroup)) in __conflict_event() 346 struct perf_cgroup *ac, *bc; in __conflict_event() local 359 bc = event_to_cgroup(b); in __conflict_event() 360 if (ac == bc) in __conflict_event() 366 if (!ac || !bc) in __conflict_event() 373 if (cgroup_is_descendant(ac->css.cgroup, bc->css.cgroup) || in __conflict_event() 374 cgroup_is_descendant(bc->css.cgroup, ac->css.cgroup)) in __conflict_event()
|
/linux-4.4.14/drivers/staging/media/davinci_vpfe/ |
D | dm365_isif.c | 670 struct vpfe_isif_black_clamp *bc) in isif_config_bclamp() argument 678 val = bc->dc_offset & ISIF_BC_DCOFFSET_MASK; in isif_config_bclamp() 681 if (!bc->en) in isif_config_bclamp() 684 val = (bc->bc_mode_color & ISIF_BC_MODE_COLOR_MASK) << in isif_config_bclamp() 688 val = val | 1 | ((bc->horz.mode & ISIF_HORZ_BC_MODE_MASK) << in isif_config_bclamp() 693 if (bc->horz.mode != VPFE_ISIF_HORZ_BC_DISABLE) { in isif_config_bclamp() 703 val = (bc->horz.win_count_calc & ISIF_HORZ_BC_WIN_COUNT_MASK) | in isif_config_bclamp() 704 ((bc->horz.base_win_sel_calc & 1) << in isif_config_bclamp() 706 ((bc->horz.clamp_pix_limit & 1) << in isif_config_bclamp() 708 ((bc->horz.win_h_sz_calc & in isif_config_bclamp() [all …]
|
/linux-4.4.14/net/dccp/ |
D | diag.c | 52 const struct inet_diag_req_v2 *r, struct nlattr *bc) in dccp_diag_dump() argument 54 inet_diag_dump_icsk(&dccp_hashinfo, skb, cb, r, bc); in dccp_diag_dump()
|
/linux-4.4.14/ |
D | Kbuild | 59 (echo $(CONFIG_HZ) | bc -q $< ) > $@ 62 (echo $(CONFIG_HZ) | bc -q $< ) 65 $(obj)/$(timeconst-file): kernel/time/timeconst.bc FORCE
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | bcm3510.c | 363 static int bcm3510_tuner_cmd(struct bcm3510_state* st,u8 bc, u16 n, u8 a) in bcm3510_tuner_cmd() argument 379 c.ctl_dat[0].data = 0x80 | bc; in bcm3510_tuner_cmd() 454 u8 bc,a; in bcm3510_set_freq() local 463 bc = 0x1c; in bcm3510_set_freq() 465 bc = 0x2c; in bcm3510_set_freq() 467 bc = 0x30; in bcm3510_set_freq() 488 deb_info(" BC1_2_3_4: %x, N: %x A: %x\n", bc, n, a); in bcm3510_set_freq() 490 return bcm3510_tuner_cmd(st,bc,n,a); in bcm3510_set_freq()
|
/linux-4.4.14/kernel/ |
D | .gitignore | 7 hz.bc
|
/linux-4.4.14/arch/m68k/kernel/ |
D | relocate_kernel.S | 142 cpusha %bc 144 cinva %bc
|
D | head.S | 1459 cpusha %bc 2463 cinva %bc 2474 cinva %bc
|
/linux-4.4.14/drivers/parisc/ |
D | pdc_stable.c | 252 if (devpath->bc[i] >= 128) in pdcspath_hwpath_read() 254 out += sprintf(out, "%u/", (unsigned char)devpath->bc[i]); in pdcspath_hwpath_read() 310 hwpath.bc[i] = simple_strtoul(temp+1, NULL, 10); in pdcspath_hwpath_write() 312 DPRINTK("%s: bc[%d]: %d\n", __func__, i, hwpath.bc[i]); in pdcspath_hwpath_write() 316 hwpath.bc[i] = simple_strtoul(in, NULL, 10); in pdcspath_hwpath_write() 317 DPRINTK("%s: bc[%d]: %d\n", __func__, i, hwpath.bc[i]); in pdcspath_hwpath_write()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | mca_drv.c | 583 if (psp->bc && pbci->eb && pbci->bsi == 0) { in recover_from_platform_error() 605 } else if (psp->cc && !psp->bc) { /* Cache error */ in recover_from_platform_error() 679 if (psp->tc && !(psp->cc || psp->bc || psp->rc || psp->uc)) in recover_from_processor_error() 690 if (psp->cc == 0 && (psp->bc == 0 || pbci == NULL)) in recover_from_processor_error()
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 96 .long R(3f, 92, 92, ad), R(21, 9d, 9d, bc) 98 .long R(63, bc, bc, df), R(77, b6, b6, c1) 116 .long R(a7, de, de, 79), R(bc, 5e, 5e, e2) 235 .long R(f7, 01, 26, 9f), R(5c, 72, f5, bc) 264 .long R(21, bc, cf, 08), R(ef, 15, e8, e6) 269 .long R(74, 4e, bc, 37), R(fc, 82, ca, a6) 291 .long R(16, 1d, c3, 72), R(bc, e2, 25, 0c)
|
/linux-4.4.14/drivers/staging/comedi/ |
D | comedi_fops.c | 875 struct comedi_bufconfig bc; in do_bufconfig_ioctl() local 880 if (copy_from_user(&bc, arg, sizeof(bc))) in do_bufconfig_ioctl() 883 if (bc.subdevice >= dev->n_subdevices) in do_bufconfig_ioctl() 886 s = &dev->subdevices[bc.subdevice]; in do_bufconfig_ioctl() 892 bc.size = 0; in do_bufconfig_ioctl() 893 bc.maximum_size = 0; in do_bufconfig_ioctl() 897 if (bc.maximum_size) { in do_bufconfig_ioctl() 901 async->max_bufsize = bc.maximum_size; in do_bufconfig_ioctl() 904 if (bc.size) { in do_bufconfig_ioctl() 905 retval = resize_async_buffer(dev, s, bc.size); in do_bufconfig_ioctl() [all …]
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | trace.h | 710 TP_PROTO(struct hfi1_devdata *dd, struct buffer_control *bc), 711 TP_ARGS(dd, bc), 714 __dynamic_array(u8, bct, sizeof(*bc)) 720 bc, 721 sizeof(*bc)); 757 TP_PROTO(struct hfi1_devdata *dd, struct buffer_control *bc), 758 TP_ARGS(dd, bc)); 761 TP_PROTO(struct hfi1_devdata *dd, struct buffer_control *bc), 762 TP_ARGS(dd, bc));
|
D | chip.c | 6974 struct buffer_control *bc, u16 *overall_limit) in get_buffer_control() argument 6980 memset(bc, 0, sizeof(*bc)); in get_buffer_control() 6984 read_one_cm_vl(dd, SEND_CM_CREDIT_VL + (8*i), &bc->vl[i]); in get_buffer_control() 6987 read_one_cm_vl(dd, SEND_CM_CREDIT_VL15, &bc->vl[15]); in get_buffer_control() 6990 bc->overall_shared_limit = cpu_to_be16( in get_buffer_control()
|
/linux-4.4.14/tools/testing/selftests/zram/ |
D | README | 30 - bc
|
/linux-4.4.14/drivers/tty/vt/ |
D | cp437.uni | 46 0x1f U+25bc 197 0xac U+00bc 261 0xe6 U+00b5 U+03bc
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
D | pc_maint.h | 78 byte bc[6]; member
|
D | message.c | 9023 static word find_cip(DIVA_CAPI_ADAPTER *a, byte *bc, byte *hlc) in find_cip() argument 9028 for (i = 9; i && !ie_compare(bc, cip_bc[i][a->u_law]); i--); in find_cip() 9031 (!ie_compare(bc, cip_bc[j][a->u_law]) || !ie_compare(hlc, cip_hlc[j])); j++); in find_cip()
|
/linux-4.4.14/drivers/net/ethernet/tehuti/ |
D | tehuti.h | 324 #define TXD_W1_VAL(bc, checksum, vtag, lgsnd, vlan_id) \ argument 325 ((bc) | ((checksum)<<5) | ((vtag)<<8) | \
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
D | mac.h | 122 u32 bc:1; member
|
/linux-4.4.14/drivers/isdn/gigaset/ |
D | capi.c | 109 u8 *bc; member 536 if (cip2bchlc[i].bc != NULL && in gigaset_isdn_icall() 538 !strcmp(cip2bchlc[i].bc, in gigaset_isdn_icall() 546 encode_ie(cip2bchlc[1].bc, iif->bc_buf, MAX_BC_OCTETS); in gigaset_isdn_icall() 570 !strcmp(cip2bchlc[i].bc, in gigaset_isdn_icall() 1470 (cmsg->CIPValue > 0 && cip2bchlc[cmsg->CIPValue].bc == NULL)) { in do_connect_req() 1486 else if (cip2bchlc[cmsg->CIPValue].bc) /* BC derived from CIP */ in do_connect_req() 1487 lbc = strlen(cip2bchlc[cmsg->CIPValue].bc); in do_connect_req() 1510 cip2bchlc[cmsg->CIPValue].bc); in do_connect_req()
|
/linux-4.4.14/drivers/net/phy/ |
D | dp83640.c | 260 static int tdr_write(int bc, struct phy_device *dev, in tdr_write() argument 263 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec & 0xffff);/* ns[15:0] */ in tdr_write() 264 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec >> 16); /* ns[31:16] */ in tdr_write() 265 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec & 0xffff); /* sec[15:0] */ in tdr_write() 266 ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec >> 16); /* sec[31:16]*/ in tdr_write() 268 ext_write(bc, dev, PAGE4, PTP_CTL, cmd); in tdr_write()
|
/linux-4.4.14/arch/parisc/include/uapi/asm/ |
D | pdc.h | 352 unsigned char bc[6]; /* bus converter routing info */ member
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | pdc.h | 179 char bc[6]; /* Bus Converter routing info to a specific */ member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/ |
D | rtl8xxxu.h | 94 u32 bc:1; member 143 u32 bc:1;
|
/linux-4.4.14/Documentation/ |
D | dontdiff | 3 *.bc
|
D | Changes | 47 o bc 1.06.95 # bc --version 81 You will need bc to build kernels 3.10 and higher
|
D | BUG-HUNTING | 168 > Code: 44 24 04 e8 6f 05 00 00 e9 e8 fe ff ff 8d 76 00 8d bc 27 00 00 169 > 00 00 55 57 56 53 81 ec bc 00 00 00 8b ac 24 d0 00 00 00 8b 5d 08
|
/linux-4.4.14/arch/x86/kernel/ |
D | uprobes.c | 59 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ argument 63 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
|
/linux-4.4.14/Documentation/networking/ |
D | netconsole.txt | 41 linux netconsole=4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc 145 linux netconsole=+4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
|
D | ray_cs.txt | 68 bc integer 0 = normal mode (802.11 timing)
|
D | baycom.txt | 82 simple. Once installed, four interfaces named bc{sf,sh,p,e}[0-3] are available.
|
/linux-4.4.14/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 74 (bc##UL << 0xc)|(bd##UL << 0xd)|(be##UL << 0xe)|(bf##UL << 0xf)) \
|
/linux-4.4.14/drivers/android/ |
D | binder.c | 162 int bc[_IOC_NR(BC_DEAD_BINDER_DONE) + 1]; member 1770 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.bc)) { in binder_thread_write() 1771 binder_stats.bc[_IOC_NR(cmd)]++; in binder_thread_write() 1772 proc->stats.bc[_IOC_NR(cmd)]++; in binder_thread_write() 1773 thread->stats.bc[_IOC_NR(cmd)]++; in binder_thread_write() 3453 BUILD_BUG_ON(ARRAY_SIZE(stats->bc) != in print_binder_stats() 3455 for (i = 0; i < ARRAY_SIZE(stats->bc); i++) { in print_binder_stats() 3456 if (stats->bc[i]) in print_binder_stats() 3458 binder_command_strings[i], stats->bc[i]); in print_binder_stats()
|
/linux-4.4.14/arch/m32r/kernel/ |
D | head.S | 121 bc loop1
|
/linux-4.4.14/Documentation/x86/ |
D | exception-tables.txt | 167 > 1 .fixup 000016bc c0198f40 c0198f40 00099f40 2**0 208 > c0199ffc <.fixup+10bc> jmp c017e7a7 <do_con_write+e3>
|
/linux-4.4.14/drivers/staging/rtl8723au/include/ |
D | rtl8723a_hal.h | 442 u32 bc:1; member
|
/linux-4.4.14/Documentation/scsi/ |
D | aacraid.txt | 45 9005:0285:9005:02bc Adaptec 3805 (Marauder80LP)
|
/linux-4.4.14/drivers/scsi/sym53c8xx_2/ |
D | sym_hipd.c | 591 #define burst_length(bc) (!(bc))? 0 : 1 << (bc) argument 602 static inline void sym_init_burst(struct sym_hcb *np, u_char bc) argument 608 if (!bc) { 612 --bc; 613 np->rv_dmode |= ((bc & 0x3) << 6); 614 np->rv_ctest5 |= (bc & 0x4);
|
/linux-4.4.14/Documentation/DocBook/ |
D | 80211.xml.db | 152 API-ieee80211-get-buffered-bc
|
/linux-4.4.14/arch/mips/include/asm/pci/ |
D | bridge.h | 851 extern int request_bridge_irq(struct bridge_controller *bc);
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | pal.h | 480 bc : 1, /* Bus check */ member 679 #define pmci_proc_bus_check pme_processor.bc
|
/linux-4.4.14/drivers/scsi/ |
D | ncr53c8xx.c | 3717 #define burst_length(bc) (!(bc))? 0 : 1 << (bc) argument 3728 static inline void ncr_init_burst(struct ncb *np, u_char bc) in ncr_init_burst() argument 3735 if (!bc) { in ncr_init_burst() 3738 --bc; in ncr_init_burst() 3739 np->rv_dmode |= ((bc & 0x3) << 6); in ncr_init_burst() 3740 np->rv_ctest5 |= (bc & 0x4); in ncr_init_burst()
|
/linux-4.4.14/drivers/scsi/pm8001/ |
D | pm8001_hwi.c | 1342 u32 Header = 0, hpriority = 0, bc = 1, category = 0x02; in pm8001_mpi_build_cmd() local 1357 Header = ((1 << 31) | (hpriority << 30) | ((bc & 0x1f) << 24) in pm8001_mpi_build_cmd() 1373 struct outbound_queue_table *circularQ, u8 bc) in pm8001_mpi_msg_free_set() argument 1397 circularQ->consumer_idx = (circularQ->consumer_idx + bc) in pm8001_mpi_msg_free_set() 4161 u8 uninitialized_var(bc); in process_oq() 4168 ret = pm8001_mpi_msg_consume(pm8001_ha, circularQ, &pMsg1, &bc); in process_oq() 4174 circularQ, bc); in process_oq()
|
D | pm8001_sas.h | 662 struct outbound_queue_table *circularQ, u8 bc);
|
D | pm80xx_hwi.c | 3724 u8 uninitialized_var(bc); in process_oq() 3731 ret = pm8001_mpi_msg_consume(pm8001_ha, circularQ, &pMsg1, &bc); in process_oq() 3737 circularQ, bc); in process_oq()
|
/linux-4.4.14/arch/mips/include/uapi/asm/ |
D | inst.h | 665 __BITFIELD_FIELD(unsigned int bc : 5,
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
D | trx.h | 573 u32 bc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | trx.h | 568 u32 bc:1; member
|
/linux-4.4.14/drivers/net/wireless/ |
D | ray_cs.c | 152 static int bc; variable 183 module_param(bc, int, 0); 614 if (bc) { in init_startup_params()
|
/linux-4.4.14/tools/perf/util/intel-pt-decoder/ |
D | x86-opcode-map.txt | 237 bc: MOV rSP/r12,Iv 534 bc: BSF Gv,Ev (!F3) | TZCNT Gv,Ev (F3) 734 bc: vfnmadd231ps/d Vx,Hx,Wx (66),(v)
|
/linux-4.4.14/arch/x86/lib/ |
D | x86-opcode-map.txt | 237 bc: MOV rSP/r12,Iv 534 bc: BSF Gv,Ev (!F3) | TZCNT Gv,Ev (F3) 734 bc: vfnmadd231ps/d Vx,Hx,Wx (66),(v)
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
D | trx.h | 700 u32 bc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | trx.h | 668 u32 bc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
D | trx.h | 683 u32 bc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | trx.h | 743 u32 bc:1; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | trx.h | 800 u32 bc:1; member
|
/linux-4.4.14/tools/testing/ktest/ |
D | ktest.pl | 3143 my ($tc, $nc, $gc, $bc) = @_; 3147 my %bad_configs = %{$bc};
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | pfpsp.sa | 130 dc.l $e005e003,$e002e001,$e001303c,$000460bc 1212 dc.l $009c009c,$006000bc,$006e0000,$0000006e 1369 dc.l $0060fdaa,$00660000,$000000bc,$006c011c 1370 dc.l $006000bc,$00660000,$00000130,$0130010c
|
D | ftest.sa | 20 dc.l $fea0487b,$01700000,$0b6461ff,$000015bc
|
D | fplsp.sa | 1802 dc.l $0003f200,$000060ff,$000002bc,$52830c80
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_hw.h | 3642 uint32_t bc:1; member 3646 uint32_t bc:1; member
|
/linux-4.4.14/Documentation/video4linux/ |
D | gspca.txt | 366 sn9c20x 0c45:62bc PC Camera (SN9C202 + HV7131R)
|
/linux-4.4.14/fs/nfsd/ |
D | nfs4xdr.c | 552 …e32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc) in nfsd4_decode_backchannel_ctl() argument 557 bc->bc_cb_program = be32_to_cpup(p++); in nfsd4_decode_backchannel_ctl() 558 nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec); in nfsd4_decode_backchannel_ctl()
|
D | nfs4state.c | 2732 …_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc) in nfsd4_backchannel_ctl() argument 2738 status = nfsd4_check_cb_sec(&bc->bc_cb_sec); in nfsd4_backchannel_ctl() 2742 session->se_cb_prog = bc->bc_cb_program; in nfsd4_backchannel_ctl() 2743 session->se_cb_sec = bc->bc_cb_sec; in nfsd4_backchannel_ctl()
|
/linux-4.4.14/arch/mips/math-emu/ |
D | cp1emu.c | 127 mips32_insn.fb_format.bc = bc_op; in microMIPS32_to_MIPS32()
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 699 00000000800005bc <main>: 702 800005bc: eb bf f0 58 00 24 stmg %r11,%r15,88(%r15)
|