/linux-4.4.14/drivers/video/backlight/ |
D | pwm_bl.c | 46 static void pwm_backlight_power_on(struct pwm_bl_data *pb, int brightness) in pwm_backlight_power_on() argument 50 if (pb->enabled) in pwm_backlight_power_on() 53 err = regulator_enable(pb->power_supply); in pwm_backlight_power_on() 55 dev_err(pb->dev, "failed to enable power supply\n"); in pwm_backlight_power_on() 57 if (pb->enable_gpio) in pwm_backlight_power_on() 58 gpiod_set_value(pb->enable_gpio, 1); in pwm_backlight_power_on() 60 pwm_enable(pb->pwm); in pwm_backlight_power_on() 61 pb->enabled = true; in pwm_backlight_power_on() 64 static void pwm_backlight_power_off(struct pwm_bl_data *pb) in pwm_backlight_power_off() argument 66 if (!pb->enabled) in pwm_backlight_power_off() [all …]
|
/linux-4.4.14/drivers/net/phy/ |
D | mdio-mux.c | 46 struct mdio_mux_parent_bus *pb = cb->parent; in mdio_mux_read() local 55 mutex_lock_nested(&pb->mii_bus->mdio_lock, SINGLE_DEPTH_NESTING); in mdio_mux_read() 56 r = pb->switch_fn(pb->current_child, cb->bus_number, pb->switch_data); in mdio_mux_read() 60 pb->current_child = cb->bus_number; in mdio_mux_read() 62 r = pb->mii_bus->read(pb->mii_bus, phy_id, regnum); in mdio_mux_read() 64 mutex_unlock(&pb->mii_bus->mdio_lock); in mdio_mux_read() 76 struct mdio_mux_parent_bus *pb = cb->parent; in mdio_mux_write() local 80 mutex_lock_nested(&pb->mii_bus->mdio_lock, SINGLE_DEPTH_NESTING); in mdio_mux_write() 81 r = pb->switch_fn(pb->current_child, cb->bus_number, pb->switch_data); in mdio_mux_write() 85 pb->current_child = cb->bus_number; in mdio_mux_write() [all …]
|
/linux-4.4.14/drivers/gpu/host1x/ |
D | cdma.c | 49 static void host1x_pushbuffer_destroy(struct push_buffer *pb) in host1x_pushbuffer_destroy() argument 51 struct host1x_cdma *cdma = pb_to_cdma(pb); in host1x_pushbuffer_destroy() 54 if (pb->phys != 0) in host1x_pushbuffer_destroy() 55 dma_free_writecombine(host1x->dev, pb->size_bytes + 4, in host1x_pushbuffer_destroy() 56 pb->mapped, pb->phys); in host1x_pushbuffer_destroy() 58 pb->mapped = NULL; in host1x_pushbuffer_destroy() 59 pb->phys = 0; in host1x_pushbuffer_destroy() 65 static int host1x_pushbuffer_init(struct push_buffer *pb) in host1x_pushbuffer_init() argument 67 struct host1x_cdma *cdma = pb_to_cdma(pb); in host1x_pushbuffer_init() 70 pb->mapped = NULL; in host1x_pushbuffer_init() [all …]
|
D | cdma.h | 85 #define pb_to_cdma(pb) container_of(pb, struct host1x_cdma, push_buffer) argument
|
D | dev.h | 57 void (*init)(struct push_buffer *pb); 279 struct push_buffer *pb) in host1x_hw_pushbuffer_init() argument 281 host->cdma_pb_op->init(pb); in host1x_hw_pushbuffer_init()
|
/linux-4.4.14/drivers/parport/ |
D | parport_pc.c | 112 static void frob_econtrol(struct parport *pb, unsigned char m, in frob_econtrol() argument 118 ectr = inb(ECONTROL(pb)); in frob_econtrol() 123 outb((ectr & ~m) ^ v, ECONTROL(pb)); in frob_econtrol() 207 static int clear_epp_timeout(struct parport *pb) in clear_epp_timeout() argument 211 if (!(parport_pc_read_status(pb) & 0x01)) in clear_epp_timeout() 215 parport_pc_read_status(pb); in clear_epp_timeout() 216 r = parport_pc_read_status(pb); in clear_epp_timeout() 217 outb(r | 0x01, STATUS(pb)); /* Some reset by writing 1 */ in clear_epp_timeout() 218 outb(r & 0xfe, STATUS(pb)); /* Others by writing 0 */ in clear_epp_timeout() 219 r = parport_pc_read_status(pb); in clear_epp_timeout() [all …]
|
D | parport_gsc.c | 58 static int clear_epp_timeout(struct parport *pb) in clear_epp_timeout() argument 62 if (!(parport_gsc_read_status(pb) & 0x01)) in clear_epp_timeout() 66 parport_gsc_read_status(pb); in clear_epp_timeout() 67 r = parport_gsc_read_status(pb); in clear_epp_timeout() 68 parport_writeb (r | 0x01, STATUS (pb)); /* Some reset by writing 1 */ in clear_epp_timeout() 69 parport_writeb (r & 0xfe, STATUS (pb)); /* Others by writing 0 */ in clear_epp_timeout() 70 r = parport_gsc_read_status(pb); in clear_epp_timeout() 140 static int parport_SPP_supported(struct parport *pb) in parport_SPP_supported() argument 150 clear_epp_timeout(pb); in parport_SPP_supported() 154 parport_writeb (w, CONTROL (pb)); in parport_SPP_supported() [all …]
|
/linux-4.4.14/block/partitions/ |
D | amiga.c | 33 struct PartitionBlock *pb; in amiga_partition() local 93 pb = (struct PartitionBlock *)data; in amiga_partition() 94 blk = be32_to_cpu(pb->pb_Next); in amiga_partition() 95 if (pb->pb_ID != cpu_to_be32(IDNAME_PARTITION)) in amiga_partition() 97 if (checksum_block((__be32 *)pb, be32_to_cpu(pb->pb_SummedLongs) & 0x7F) != 0 ) in amiga_partition() 102 nr_sects = (be32_to_cpu(pb->pb_Environment[10]) + 1 - in amiga_partition() 103 be32_to_cpu(pb->pb_Environment[9])) * in amiga_partition() 104 be32_to_cpu(pb->pb_Environment[3]) * in amiga_partition() 105 be32_to_cpu(pb->pb_Environment[5]) * in amiga_partition() 109 start_sect = be32_to_cpu(pb->pb_Environment[9]) * in amiga_partition() [all …]
|
/linux-4.4.14/arch/sparc/lib/ |
D | PeeCeeI.c | 93 u8 *pb = dst; in insb() local 95 while ((((unsigned long)pb) & 0x3) && count--) in insb() 96 *pb++ = __raw_readb(addr); in insb() 97 pi = (u32 *)pb; in insb() 108 pb = (u8 *)pi; in insb() 110 *pb++ = __raw_readb(addr); in insb() 155 u8 *pb; in insl() local 174 pb = dst; in insl() 177 *pb++ = l >> 24; in insl() 178 ps = (u16 *)pb; in insl() [all …]
|
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
D | pack_generic.c | 604 struct ptlrpc_body *pb; in lustre_unpack_ptlrpc_body_v2() local 607 pb = lustre_msg_buf_v2(m, offset, sizeof(struct ptlrpc_body_v2)); in lustre_unpack_ptlrpc_body_v2() 608 if (!pb) { in lustre_unpack_ptlrpc_body_v2() 613 lustre_swab_ptlrpc_body(pb); in lustre_unpack_ptlrpc_body_v2() 617 if ((pb->pb_version & ~LUSTRE_VERSION_MASK) != PTLRPC_MSG_VERSION) { in lustre_unpack_ptlrpc_body_v2() 618 CERROR("wrong lustre_msg version %08x\n", pb->pb_version); in lustre_unpack_ptlrpc_body_v2() 623 pb->pb_status = ptlrpc_status_ntoh(pb->pb_status); in lustre_unpack_ptlrpc_body_v2() 792 struct ptlrpc_body *pb = lustre_msg_ptlrpc_body(msg); in lustre_msg_get_flags() local 794 if (pb) in lustre_msg_get_flags() 795 return pb->pb_flags; in lustre_msg_get_flags() [all …]
|
/linux-4.4.14/arch/mips/fw/arc/ |
D | init.c | 26 PSYSTEM_PARAMETER_BLOCK pb = PROMBLOCK; in prom_init() local 34 if (pb->magic != 0x53435241) { in prom_init() 36 (unsigned long) pb->magic); in prom_init() 44 pb->ver, pb->rev); in prom_init()
|
/linux-4.4.14/fs/ext4/ |
D | ext4_extents.h | 248 ext4_fsblk_t pb) in ext4_ext_store_pblock() argument 250 ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff)); in ext4_ext_store_pblock() 251 ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & in ext4_ext_store_pblock() 261 ext4_fsblk_t pb) in ext4_idx_store_pblock() argument 263 ix->ei_leaf_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff)); in ext4_idx_store_pblock() 264 ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & in ext4_idx_store_pblock()
|
D | extents_status.h | 149 ext4_fsblk_t pb) in ext4_es_store_pblock() argument 153 block = (pb & ~ES_MASK) | (es->es_pblk & ES_MASK); in ext4_es_store_pblock() 165 ext4_fsblk_t pb, in ext4_es_store_pblock_status() argument 169 (pb & ~ES_MASK); in ext4_es_store_pblock_status()
|
/linux-4.4.14/include/media/ |
D | videobuf2-core.h | 366 int (*verify_planes_array)(struct vb2_buffer *vb, const void *pb); 367 int (*fill_user_buffer)(struct vb2_buffer *vb, void *pb); 368 int (*fill_vb2_buffer)(struct vb2_buffer *vb, const void *pb, 370 int (*set_timestamp)(struct vb2_buffer *vb, const void *pb); 507 int vb2_core_querybuf(struct vb2_queue *q, unsigned int index, void *pb); 512 int vb2_core_prepare_buf(struct vb2_queue *q, unsigned int index, void *pb); 513 int vb2_core_qbuf(struct vb2_queue *q, unsigned int index, void *pb); 514 int vb2_core_dqbuf(struct vb2_queue *q, void *pb, bool nonblocking);
|
/linux-4.4.14/drivers/gpu/host1x/hw/ |
D | cdma_hw.c | 31 static void push_buffer_init(struct push_buffer *pb) in push_buffer_init() argument 33 *(u32 *)(pb->mapped + pb->size_bytes) = host1x_opcode_restart(0); in push_buffer_init() 43 struct push_buffer *pb = &cdma->push_buffer; in cdma_timeout_cpu_incr() local 54 u32 *p = (u32 *)(pb->mapped + getptr); in cdma_timeout_cpu_incr() 58 &pb->phys, getptr); in cdma_timeout_cpu_incr() 59 getptr = (getptr + 8) & (pb->size_bytes - 1); in cdma_timeout_cpu_incr()
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | videobuf2-core.c | 449 int vb2_core_querybuf(struct vb2_queue *q, unsigned int index, void *pb) in vb2_core_querybuf() argument 451 return call_bufop(q, fill_user_buffer, q->bufs[index], pb); in vb2_core_querybuf() 929 static int __qbuf_mmap(struct vb2_buffer *vb, const void *pb) in __qbuf_mmap() argument 932 vb, pb, vb->planes); in __qbuf_mmap() 939 static int __qbuf_userptr(struct vb2_buffer *vb, const void *pb) in __qbuf_userptr() argument 952 ret = call_bufop(vb->vb2_queue, fill_vb2_buffer, vb, pb, planes); in __qbuf_userptr() 1053 static int __qbuf_dmabuf(struct vb2_buffer *vb, const void *pb) in __qbuf_dmabuf() argument 1066 ret = call_bufop(vb->vb2_queue, fill_vb2_buffer, vb, pb, planes); in __qbuf_dmabuf() 1199 static int __buf_prepare(struct vb2_buffer *vb, const void *pb) in __buf_prepare() argument 1213 ret = __qbuf_mmap(vb, pb); in __buf_prepare() [all …]
|
D | videobuf2-v4l2.c | 110 static int __set_timestamp(struct vb2_buffer *vb, const void *pb) in __set_timestamp() argument 112 const struct v4l2_buffer *b = pb; in __set_timestamp() 179 static int __fill_v4l2_buffer(struct vb2_buffer *vb, void *pb) in __fill_v4l2_buffer() argument 181 struct v4l2_buffer *b = pb; in __fill_v4l2_buffer() 284 const void *pb, struct vb2_plane *planes) in __fill_vb2_buffer() argument 287 const struct v4l2_buffer *b = pb; in __fill_vb2_buffer()
|
/linux-4.4.14/arch/x86/mm/ |
D | numa_emulation.c | 50 struct numa_memblk *pb = &pi->blk[phys_blk]; in emu_setup_memblk() local 58 eb->start = pb->start; in emu_setup_memblk() 59 eb->end = pb->start + size; in emu_setup_memblk() 65 pb->start += size; in emu_setup_memblk() 66 if (pb->start >= pb->end) { in emu_setup_memblk() 67 WARN_ON_ONCE(pb->start > pb->end); in emu_setup_memblk()
|
/linux-4.4.14/drivers/md/ |
D | dm-cache-target.c | 744 struct per_bio_data *pb = dm_per_bio_data(bio, data_size); in get_per_bio_data() local 745 BUG_ON(!pb); in get_per_bio_data() 746 return pb; in get_per_bio_data() 751 struct per_bio_data *pb = get_per_bio_data(bio, data_size); in init_per_bio_data() local 753 pb->tick = false; in init_per_bio_data() 754 pb->req_nr = dm_bio_get_target_bio_nr(bio); in init_per_bio_data() 755 pb->all_io_entry = NULL; in init_per_bio_data() 756 pb->len = 0; in init_per_bio_data() 758 return pb; in init_per_bio_data() 790 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size); in check_if_tick_bio_needed() local [all …]
|
D | dm-flakey.c | 280 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data)); in flakey_map() local 281 pb->bio_submitted = false; in flakey_map() 289 pb->bio_submitted = true; in flakey_map() 329 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data)); in flakey_end_io() local 335 if (fc->corrupt_bio_byte && !error && pb->bio_submitted && in flakey_end_io()
|
D | dm-log-writes.c | 549 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data)); in log_writes_map() local 559 pb->block = NULL; in log_writes_map() 593 pb->block = block; in log_writes_map() 671 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data)); in normal_end_io() local 673 if (bio_data_dir(bio) == WRITE && pb->block) { in normal_end_io() 674 struct pending_block *block = pb->block; in normal_end_io()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_dma.c | 86 struct nouveau_bo *pb = chan->push.buffer; in nv50_dma_push() local 97 nouveau_bo_wr32(pb, ip++, lower_32_bits(offset)); in nv50_dma_push() 98 nouveau_bo_wr32(pb, ip++, upper_32_bits(offset) | length << 8); in nv50_dma_push() 104 nouveau_bo_rd32(pb, 0); in nv50_dma_push()
|
/linux-4.4.14/scripts/coccinelle/free/ |
D | devm_free.cocci | 43 @pb@ 59 p << pb.p; 66 p << pb.p;
|
/linux-4.4.14/drivers/usb/host/ |
D | r8a66597.h | 220 unsigned char *pb; in r8a66597_write_fifo() local 228 pb = (unsigned char *)buf + count * 4; in r8a66597_write_fifo() 231 iowrite8(pb[i], fifoaddr + i); in r8a66597_write_fifo() 233 iowrite8(pb[i], fifoaddr + 3 - i); in r8a66597_write_fifo()
|
/linux-4.4.14/drivers/scsi/ |
D | ppa.c | 988 static int __ppa_attach(struct parport *pb) in __ppa_attach() argument 1005 dev->dev = parport_register_device(pb, "ppa", NULL, ppa_wakeup, in __ppa_attach() 1022 "time!\n", pb->number); in __ppa_attach() 1070 host->io_port = pb->base; in __ppa_attach() 1073 host->unique_id = pb->number; in __ppa_attach() 1092 static void ppa_attach(struct parport *pb) in ppa_attach() argument 1094 __ppa_attach(pb); in ppa_attach() 1097 static void ppa_detach(struct parport *pb) in ppa_detach() argument 1101 if (dev->dev->port == pb) { in ppa_detach()
|
D | imm.c | 1123 static int __imm_attach(struct parport *pb) in __imm_attach() argument 1144 dev->dev = parport_register_device(pb, "imm", NULL, imm_wakeup, in __imm_attach() 1162 "time!\n", pb->number); in __imm_attach() 1204 host->io_port = pb->base; in __imm_attach() 1207 host->unique_id = pb->number; in __imm_attach() 1227 static void imm_attach(struct parport *pb) in imm_attach() argument 1229 __imm_attach(pb); in imm_attach() 1232 static void imm_detach(struct parport *pb) in imm_detach() argument 1236 if (dev->dev->port == pb) { in imm_detach()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlxsw/ |
D | spectrum_buffers.c | 76 const struct mlxsw_sp_pb *pb; in mlxsw_sp_port_pb_init() local 78 pb = &mlxsw_sp_pbs[i]; in mlxsw_sp_port_pb_init() 79 mlxsw_reg_pbmc_lossy_buffer_pack(pbmc_pl, pb->index, pb->size); in mlxsw_sp_port_pb_init()
|
/linux-4.4.14/drivers/pinctrl/meson/ |
D | pinctrl-meson.h | 195 #define BANK(n, f, l, per, peb, pr, pb, dr, db, or, ob, ir, ib) \ argument 202 [REG_PULL] = { pr, pb }, \
|
/linux-4.4.14/Documentation/isdn/ |
D | README.HiSax | 274 1 Teles 16.0 pa=irq pb=membase pc=iobase 275 2 Teles 8.0 pa=irq pb=membase 276 3 Teles 16.3 pa=irq pb=iobase 278 5 AVM A1 (Fritz) pa=irq pb=iobase 281 8 Teles S0 PCMCIA pa=irq pb=iobase 282 9 ITK ix1-micro Rev.2 pa=irq pb=iobase 283 10 ELSA PCMCIA pa=irq, pb=io (set with card manager) 287 13 HFC-2BS0 based cards pa=irq pb=io 289 15 Sedlbauer Speed Card pa=irq pb=io (Speed Win only as module !) 290 15 Sedlbauer PC/104 pa=irq pb=io [all …]
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | m66592-udc.h | 573 unsigned char *pb; in m66592_write_fifo() local 580 pb = buf + count * 4; in m66592_write_fifo() 583 iowrite8(pb[i], fifoaddr + (3 - i)); in m66592_write_fifo() 585 iowrite8(pb[i], fifoaddr + i); in m66592_write_fifo()
|
/linux-4.4.14/scripts/ |
D | xz_wrap.sh | 18 ia64) BCJ=--ia64; LZMA2OPTS=pb=4 ;;
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | isdn_ppp.c | 119 spin_lock(&lp->netdev->pb->lock); in isdn_ppp_free() 123 if (lp->netdev->pb->ref_ct == 1) /* last link in queue? */ in isdn_ppp_free() 126 lp->netdev->pb->ref_ct--; in isdn_ppp_free() 127 spin_unlock(&lp->netdev->pb->lock); in isdn_ppp_free() 1587 if (lp->netdev->pb) in isdn_ppp_mp_init() 1588 lp->netdev->pb->ref_ct--; in isdn_ppp_mp_init() 1589 lp->netdev->pb = add_to; in isdn_ppp_mp_init() 1592 if ((lp->netdev->pb = isdn_ppp_mp_bundle_alloc()) == NULL) in isdn_ppp_mp_init() 1595 lp->netdev->pb->frags = NULL; in isdn_ppp_mp_init() 1596 lp->netdev->pb->frames = 0; in isdn_ppp_mp_init() [all …]
|
/linux-4.4.14/scripts/genksyms/ |
D | parse.y | 47 remove_list(struct string_list **pb, struct string_list **pe) in remove_list() argument 49 struct string_list *b = *pb, *e = *pe; in remove_list() 50 *pb = e; in remove_list()
|
D | parse.tab.c_shipped | 89 remove_list(struct string_list **pb, struct string_list **pe) 91 struct string_list *b = *pb, *e = *pe; 92 *pb = e;
|
/linux-4.4.14/drivers/net/hyperv/ |
D | netvsc_drv.c | 289 struct hv_page_buffer *pb) in fill_pg_buf() argument 305 pb[j].pfn = page_to_pfn(page); in fill_pg_buf() 306 pb[j].offset = offset; in fill_pg_buf() 307 pb[j].len = bytes; in fill_pg_buf() 325 struct hv_page_buffer *pb = packet->page_buf; in init_page_array() local 339 len, &pb[slots_used]); in init_page_array() 346 skb_headlen(skb), &pb[slots_used]); in init_page_array() 353 skb_frag_size(frag), &pb[slots_used]); in init_page_array()
|
/linux-4.4.14/lib/ |
D | decompress_unlzma.c | 546 int lc, pb, lp; in unlzma() local 597 pb = 0; in unlzma() 600 pb++; in unlzma() 603 pos_state_mask = (1 << pb) - 1; in unlzma()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_state.c | 469 static long print_state_change(char *pb, union drbd_state os, union drbd_state ns, in print_state_change() argument 473 pbp = pb; in print_state_change() 497 return pbp - pb; in print_state_change() 503 char pb[300]; in drbd_pr_state_change() local 504 char *pbp = pb; in drbd_pr_state_change() 521 if (pbp != pb) in drbd_pr_state_change() 522 drbd_info(device, "%s\n", pb); in drbd_pr_state_change() 528 char pb[300]; in conn_pr_state_change() local 529 char *pbp = pb; in conn_pr_state_change() 538 if (pbp != pb) in conn_pr_state_change() [all …]
|
/linux-4.4.14/include/uapi/sound/ |
D | hdspm.h | 209 unsigned int pb[HDSPM_MIXER_CHANNELS]; member
|
/linux-4.4.14/Documentation/pcmcia/ |
D | devicetable.txt | 27 The hex value after "pa" is the hash of product ID string 1, after "pb" for
|
/linux-4.4.14/sound/usb/caiaq/ |
D | audio.c | 357 int stream, pb, *cnt; in check_for_elapsed_periods() local 365 pb = snd_pcm_lib_period_bytes(sub); in check_for_elapsed_periods() 370 if (*cnt >= pb) { in check_for_elapsed_periods() 372 *cnt %= pb; in check_for_elapsed_periods()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | versatile-pb.dts | 5 compatible = "arm,versatile-pb";
|
D | Makefile | 713 versatile-pb.dtb
|
/linux-4.4.14/drivers/staging/speakup/ |
D | kobjects.c | 457 struct st_bits_data *pb; in punc_show() local 476 pb = (struct st_bits_data *) &spk_punc_info[var->value]; in punc_show() 477 mask = pb->mask; in punc_show()
|
/linux-4.4.14/tools/testing/ktest/ |
D | ktest.pl | 3051 my ($pa, $pb) = @_; 3055 my %b = %{$pb}; 3070 my ($pa, $pb) = @_; 3076 my %b = %{$pb}; 3092 my ($pa, $pb) = @_; 3098 my %b = %{$pb};
|
/linux-4.4.14/include/linux/ |
D | isdn.h | 256 ippp_bundle * pb; /* pointer to the common bundle structure member
|
D | blkdev.h | 1393 struct bio_vec pb, nb; in bio_will_gap() local 1395 bio_get_last_bvec(prev, &pb); in bio_will_gap() 1398 return __bvec_gap_to_prev(q, &pb, nb.bv_offset); in bio_will_gap()
|
/linux-4.4.14/drivers/gpu/drm/msm/mdp/mdp5/ |
D | mdp5_crtc.c | 371 struct plane_state *pb = (struct plane_state *)b; in pstate_cmp() local 372 return pa->state->zpos - pb->state->zpos; in pstate_cmp()
|
/linux-4.4.14/Documentation/ |
D | printk-formats.txt | 286 %*pb 0779 290 %*pb output the bitmap with field width as the number of bits and %*pbl
|
/linux-4.4.14/drivers/net/ethernet/dec/tulip/ |
D | de4x5.c | 2123 u_char pb; in srom_search() local 2137 pb = this_dev->bus->number; in srom_search() 2141 lp->bus_num = pb; in srom_search() 2168 last.bus = pb; in srom_search() 2197 u_char pb, pbus = 0, dev_num, dnum = 0, timer; in de4x5_pci_probe() local 2206 pb = pdev->bus->number; in de4x5_pci_probe() 2211 if ((pbus != pb) || (dnum != dev_num)) in de4x5_pci_probe() 2234 if (lp->bus_num != pb) { in de4x5_pci_probe() 2235 lp->bus_num = pb; in de4x5_pci_probe() 2244 lp->bus_num = pb; in de4x5_pci_probe()
|
/linux-4.4.14/drivers/mtd/nand/ |
D | lpc32xx_slc.c | 670 uint8_t *pb = chip->oob_poi + chip->ecc.layout->eccpos[0]; in lpc32xx_nand_write_page_syndrome() local 682 lpc32xx_slc_ecc_copy(pb, (uint32_t *)host->ecc_buf, chip->ecc.steps); in lpc32xx_nand_write_page_syndrome()
|
/linux-4.4.14/sound/pci/rme9652/ |
D | hdspm.c | 1166 unsigned int pb) in hdspm_read_pb_gain() argument 1168 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS) in hdspm_read_pb_gain() 1170 return hdspm->mixer->ch[chan].pb[pb]; in hdspm_read_pb_gain() 1187 unsigned int pb, unsigned short data) in hdspm_write_pb_gain() argument 1189 if (chan >= HDSPM_MIXER_CHANNELS || pb >= HDSPM_MIXER_CHANNELS) in hdspm_write_pb_gain() 1194 ((64 + pb + 128 * chan) * sizeof(u32)), in hdspm_write_pb_gain() 1195 (hdspm->mixer->ch[chan].pb[pb] = data & 0xFFFF)); in hdspm_write_pb_gain()
|
/linux-4.4.14/drivers/isdn/hardware/mISDN/ |
D | hfcmulti.c | 4535 struct bchannel *pb; in release_port() local 4586 pb = hc->chan[i].bch; in release_port() 4589 mISDN_freebchannel(pb); in release_port() 4590 kfree(pb); in release_port() 4609 pb = hc->chan[ci - 2].bch; in release_port() 4612 mISDN_freebchannel(pb); in release_port() 4613 kfree(pb); in release_port() 4623 pb = hc->chan[ci - 1].bch; in release_port() 4626 mISDN_freebchannel(pb); in release_port() 4627 kfree(pb); in release_port()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | arm-boards | 77 compatible = "arm,versatile-pb"; /* Platform baseboard */
|
/linux-4.4.14/drivers/net/ethernet/i825xx/ |
D | sun3_82586.c | 208 struct priv pb; in check586() local 209 struct priv *p = &pb; in check586()
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_main.c | 4394 static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb) in ixgbe_hpbthresh() argument 4408 (pb == ixgbe_fcoe_get_tc(adapter))) in ixgbe_hpbthresh() 4430 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10; in ixgbe_hpbthresh() 4441 "Decrease MTU or number of traffic classes\n", pb); in ixgbe_hpbthresh() 4454 static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter, int pb) in ixgbe_lpbthresh() argument 4468 (pb == netdev_get_prio_tc_map(dev, adapter->fcoe.up))) in ixgbe_lpbthresh()
|
/linux-4.4.14/tools/lib/traceevent/ |
D | event-parse.c | 626 const struct printk_map *pb = b; in printk_cmp() local 628 if (pa->addr < pb->addr) in printk_cmp() 630 if (pa->addr > pb->addr) in printk_cmp()
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/lustre/ |
D | lustre_idl.h | 1140 void lustre_swab_ptlrpc_body(struct ptlrpc_body *pb);
|
/linux-4.4.14/drivers/pinctrl/sirf/ |
D | pinctrl-atlas7.c | 198 #define PADCONF(pad, t, mr, pr, dsr, adr, mb, pb, dsb, adb) \ argument 207 .pupd_bit = pb, \
|