Searched refs:pb (Results 1 - 25 of 92) sorted by last modified time

1234

/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dscan.c2484 struct iwl_scan_probe_params_v4 *pb = &scan_p->probe_params; local
2522 pb->preq = params->preq;
2529 iwl_mvm_umac_scan_fill_6g_chan_list(mvm, params, pb);
2533 pb, cp, vif->type,
/linux-master/arch/x86/kvm/
H A Dpmu.c323 static int filter_cmp(const void *pa, const void *pb, u64 mask) argument
326 u64 b = *(u64 *)pb & mask;
332 static int filter_sort_cmp(const void *pa, const void *pb) argument
334 return filter_cmp(pa, pb, (KVM_PMU_MASKED_ENTRY_EVENT_SELECT |
343 static int filter_event_cmp(const void *pa, const void *pb) argument
345 return filter_cmp(pa, pb, (KVM_PMU_MASKED_ENTRY_EVENT_SELECT));
/linux-master/sound/core/seq/
H A Dseq_ump_convert.c102 ev->data.control.channel = val->pb.channel;
103 ev->data.control.value = (val->pb.data_msb << 7) | val->pb.data_lsb;
222 ev->data.control.channel = val->pb.channel;
223 ev->data.control.value = downscale_32_to_14bit(val->pb.data);
400 midi2->pb.data = upscale_14_to_32bit((midi1->pb.data_msb << 7) |
401 midi1->pb.data_lsb);
452 v = downscale_32_to_14bit(midi2->pb.data);
453 midi1->pb
[all...]
/linux-master/net/bluetooth/
H A Diso.c2101 __u16 pb, ts, len; local
2106 pb = hci_iso_flags_pb(flags);
2109 BT_DBG("conn %p len %d pb 0x%x ts 0x%x", conn, skb->len, pb, ts);
2111 switch (pb) {
2157 if (pb == ISO_SINGLE) {
/linux-master/drivers/net/hyperv/
H A Dnetvsc.c942 struct hv_page_buffer *pb,
963 char *src = phys_to_virt(pb[i].pfn << HV_HYP_PAGE_SHIFT);
964 u32 offset = pb[i].offset;
965 u32 len = pb[i].len;
1014 struct hv_page_buffer *pb)
1030 char *src = phys_to_virt((pb[i].pfn << HV_HYP_PAGE_SHIFT)
1031 + pb[i].offset);
1032 u32 len = pb[i].len;
1041 /* pb[].offset and pb[]
937 netvsc_copy_to_send_buf(struct netvsc_device *net_device, unsigned int section_index, u32 pend_size, struct hv_netvsc_packet *packet, struct rndis_message *rndis_msg, struct hv_page_buffer *pb, bool xmit_more) argument
1012 netvsc_dma_map(struct hv_device *hv_dev, struct hv_netvsc_packet *packet, struct hv_page_buffer *pb) argument
1052 netvsc_send_pkt( struct hv_device *device, struct hv_netvsc_packet *packet, struct netvsc_device *net_device, struct hv_page_buffer *pb, struct sk_buff *skb) argument
1180 netvsc_send(struct net_device *ndev, struct hv_netvsc_packet *packet, struct rndis_message *rndis_msg, struct hv_page_buffer *pb, struct sk_buff *skb, bool xdp_tx) argument
[all...]
/linux-master/include/net/bluetooth/
H A Dhci.h3009 #define hci_iso_flags_pack(pb, ts) ((pb & 0x03) | ((ts & 0x01) << 2))
/linux-master/block/
H A Dblk-merge.c55 struct bio_vec pb, nb; local
66 bio_get_first_bvec(prev_rq->bio, &pb);
68 bio_get_first_bvec(prev, &pb);
69 if (pb.bv_offset & queue_virt_boundary(q))
76 * - if 'pb' ends aligned, the merged segment ends aligned
77 * - if 'pb' ends unaligned, the next bio must include
79 * merge with 'pb'
81 bio_get_last_bvec(prev, &pb);
83 if (biovec_phys_mergeable(q, &pb, &nb))
85 return __bvec_gap_to_prev(&q->limits, &pb, n
[all...]
/linux-master/tools/lib/bpf/
H A Dlibbpf.c12847 struct perf_buffer *pb; member in struct:perf_cpu_buf
12871 static void perf_buffer__free_cpu_buf(struct perf_buffer *pb, argument
12877 munmap(cpu_buf->base, pb->mmap_size + pb->page_size))
12887 void perf_buffer__free(struct perf_buffer *pb) argument
12891 if (IS_ERR_OR_NULL(pb))
12893 if (pb->cpu_bufs) {
12894 for (i = 0; i < pb->cpu_cnt; i++) {
12895 struct perf_cpu_buf *cpu_buf = pb->cpu_bufs[i];
12900 bpf_map_delete_elem(pb
12912 perf_buffer__open_cpu_buf(struct perf_buffer *pb, struct perf_event_attr *attr, int cpu, int map_key) argument
13027 struct perf_buffer *pb; local
13186 struct perf_buffer *pb = cpu_buf->pb; local
13215 perf_buffer__process_records(struct perf_buffer *pb, struct perf_cpu_buf *cpu_buf) argument
13229 perf_buffer__epoll_fd(const struct perf_buffer *pb) argument
13234 perf_buffer__poll(struct perf_buffer *pb, int timeout_ms) argument
13257 perf_buffer__buffer_cnt(const struct perf_buffer *pb) argument
13267 perf_buffer__buffer_fd(const struct perf_buffer *pb, size_t buf_idx) argument
13281 perf_buffer__buffer(struct perf_buffer *pb, int buf_idx, void **buf, size_t *buf_size) argument
13305 perf_buffer__consume_buffer(struct perf_buffer *pb, size_t buf_idx) argument
13319 perf_buffer__consume(struct perf_buffer *pb) argument
[all...]
H A Dlibbpf.h1537 LIBBPF_API void perf_buffer__free(struct perf_buffer *pb);
1538 LIBBPF_API int perf_buffer__epoll_fd(const struct perf_buffer *pb);
1539 LIBBPF_API int perf_buffer__poll(struct perf_buffer *pb, int timeout_ms);
1540 LIBBPF_API int perf_buffer__consume(struct perf_buffer *pb);
1541 LIBBPF_API int perf_buffer__consume_buffer(struct perf_buffer *pb, size_t buf_idx);
1542 LIBBPF_API size_t perf_buffer__buffer_cnt(const struct perf_buffer *pb);
1543 LIBBPF_API int perf_buffer__buffer_fd(const struct perf_buffer *pb, size_t buf_idx);
1552 * @param pb the perf buffer structure
1558 LIBBPF_API int perf_buffer__buffer(struct perf_buffer *pb, int buf_idx, void **buf,
/linux-master/kernel/sched/
H A Dcore.c186 int pa = __task_prio(a), pb = __task_prio(b); local
188 if (-pa < -pb)
191 if (-pb < -pa)
/linux-master/drivers/misc/
H A Dfastrpc.c528 struct fastrpc_buf_overlap *pb = (struct fastrpc_buf_overlap *)b; local
530 int st = CMP(pa->start, pb->start);
532 int ed = CMP(pb->end, pa->end);
/linux-master/include/media/
H A Dvideobuf2-core.h473 int (*verify_planes_array)(struct vb2_buffer *vb, const void *pb);
475 void (*fill_user_buffer)(struct vb2_buffer *vb, void *pb);
477 void (*copy_timestamp)(struct vb2_buffer *vb, const void *pb);
761 * @pb: buffer struct passed from userspace.
772 void vb2_core_querybuf(struct vb2_queue *q, struct vb2_buffer *vb, void *pb);
837 * @pb: buffer structure passed from userspace to
852 int vb2_core_prepare_buf(struct vb2_queue *q, struct vb2_buffer *vb, void *pb);
859 * @pb: buffer structure passed from userspace to
880 int vb2_core_qbuf(struct vb2_queue *q, struct vb2_buffer *vb, void *pb,
887 * @pb
[all...]
/linux-master/drivers/scsi/mpt3sas/
H A Dmpt3sas_base.c5443 u8 *pb; local
5447 pb = (u8 *) n;
5452 ckSum = ckSum + pb[len];
/linux-master/sound/soc/sof/
H A Dtopology.c1329 char **pb; local
1352 pb = kmemdup(pin_binding, num_pins * sizeof(char *), GFP_KERNEL);
1353 if (!pb) {
1358 swidget->input_pin_binding = pb;
1360 swidget->output_pin_binding = pb;
/linux-master/fs/xfs/scrub/
H A Dagheader.c679 const void *pb)
682 const xfs_agblock_t *b = pb;
677 xchk_agblock_cmp( const void *pa, const void *pb) argument
/linux-master/drivers/md/
H A Ddm-flakey.c482 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data)); local
484 pb->bio_submitted = false;
496 pb->bio_submitted = true;
557 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data)); local
562 if (!*error && pb->bio_submitted && (bio_data_dir(bio) == READ)) {
/linux-master/drivers/gpu/host1x/
H A Dcdma.c48 static void host1x_pushbuffer_destroy(struct push_buffer *pb) argument
50 struct host1x_cdma *cdma = pb_to_cdma(pb);
53 if (!pb->mapped)
57 iommu_unmap(host1x->domain, pb->dma, pb->alloc_size);
58 free_iova(&host1x->iova, iova_pfn(&host1x->iova, pb->dma));
61 dma_free_wc(host1x->dev, pb->alloc_size, pb->mapped, pb->phys);
63 pb
70 host1x_pushbuffer_init(struct push_buffer *pb) argument
138 host1x_pushbuffer_push(struct push_buffer *pb, u32 op1, u32 op2) argument
155 host1x_pushbuffer_pop(struct push_buffer *pb, unsigned int slots) argument
167 host1x_pushbuffer_space(struct push_buffer *pb) argument
189 struct push_buffer *pb = &cdma->push_buffer; local
240 struct push_buffer *pb = &cdma->push_buffer; local
341 struct push_buffer *pb = &cdma->push_buffer; local
531 struct push_buffer *pb = &cdma->push_buffer; local
595 struct push_buffer *pb = &cdma->push_buffer; local
627 struct push_buffer *pb = &cdma->push_buffer; local
[all...]
H A Ddev.h50 void (*init)(struct push_buffer *pb);
325 struct push_buffer *pb)
327 host->cdma_pb_op->init(pb);
324 host1x_hw_pushbuffer_init(struct host1x *host, struct push_buffer *pb) argument
/linux-master/drivers/gpu/drm/i915/
H A Di915_drv.h479 const unsigned int pb = __platform_mask_bit(info, p); local
483 return info->platform_mask[pi] & BIT(pb);
492 const unsigned int pb = __platform_mask_bit(info, p); local
501 return ((mask << (msb - pb)) & (mask << (msb - s))) & BIT(msb);
/linux-master/tools/bpf/resolve_btfids/
H A Dmain.c660 static int cmp_id(const void *pa, const void *pb) argument
662 const int *a = pa, *b = pb;
/linux-master/net/sched/
H A Dsch_cake.c1458 u32 pb = cake_heap_get_backlog(q, p); local
1460 if (ib > pb) {
/linux-master/include/linux/
H A Dbtf.h483 const int *pa = a, *pb = b; local
485 return *pa - *pb;
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_main.c3622 /* Enable Security TX Buffer IFG for multiple pb */
5126 * @pb: packet buffer to calculate
5128 static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb) argument
5142 (pb == ixgbe_fcoe_get_tc(adapter)))
5165 rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10;
5176 "Decrease MTU or number of traffic classes\n", pb);
5187 * @pb: packet buffer to calculate
5189 static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter, int pb) argument
5203 (pb == netdev_get_prio_tc_map(dev, adapter->fcoe.up)))
/linux-master/drivers/net/ethernet/i825xx/
H A Dsun3_82586.c211 struct priv pb; local
212 struct priv *p = &pb;
/linux-master/drivers/block/drbd/
H A Ddrbd_state.c743 static long print_state_change(char *pb, union drbd_state os, union drbd_state ns, argument
747 pbp = pb;
771 return pbp - pb;
777 char pb[300]; local
778 char *pbp = pb;
795 if (pbp != pb)
796 drbd_info(device, "%s\n", pb);
802 char pb[300]; local
803 char *pbp = pb;
812 if (pbp != pb)
[all...]

Completed in 768 milliseconds

1234