Searched refs:start_id (Results 1 - 25 of 28) sorted by relevance

12

/linux-master/sound/virtio/
H A Dvirtio_ctl_msg.h73 int virtsnd_ctl_query_info(struct virtio_snd *snd, int command, int start_id,
H A Dvirtio_ctl_msg.c253 * @start_id: Item start identifier.
261 int virtsnd_ctl_query_info(struct virtio_snd *snd, int command, int start_id, argument
275 query->start_id = cpu_to_le32(start_id);
/linux-master/drivers/infiniband/hw/hfi1/
H A Dnetdev.h100 void *hfi1_netdev_get_first_data(struct hfi1_devdata *dd, int *start_id);
H A Dnetdev_rx.c471 * @start_id: requested integer id up to INT_MAX
473 void *hfi1_netdev_get_first_data(struct hfi1_devdata *dd, int *start_id) argument
476 unsigned long index = *start_id;
480 *start_id = (int)index;
/linux-master/drivers/net/ethernet/google/gve/
H A Dgve_main.c642 int start_id; local
646 start_id = gve_xdp_tx_start_queue_id(priv);
647 for (i = start_id; i < start_id + gve_num_xdp_qpls(priv); i++) {
659 int start_id; local
674 start_id = gve_rx_start_qpl_id(&priv->tx_cfg);
676 err = gve_register_qpl(priv, start_id + i);
686 int start_id; local
690 start_id = gve_xdp_tx_start_queue_id(priv);
691 for (i = start_id;
703 int start_id; local
800 int start_id = gve_xdp_tx_start_queue_id(priv); local
839 gve_tx_stop_rings(struct gve_priv *priv, int start_id, int num_rings) argument
854 gve_tx_start_rings(struct gve_priv *priv, int start_id, int num_rings) argument
921 int start_id; local
1070 gve_free_n_qpls(struct gve_priv *priv, struct gve_queue_page_list *qpls, int start_id, int num_qpls) argument
1081 gve_alloc_n_qpls(struct gve_priv *priv, struct gve_queue_page_list *qpls, int page_count, int start_id, int num_qpls) argument
1584 int start_id; local
[all...]
H A Dgve_adminq.h440 int gve_adminq_create_tx_queues(struct gve_priv *priv, u32 start_id, u32 num_queues);
441 int gve_adminq_destroy_tx_queues(struct gve_priv *priv, u32 start_id, u32 num_queues);
H A Dgve_adminq.c599 int gve_adminq_create_tx_queues(struct gve_priv *priv, u32 start_id, u32 num_queues) argument
604 for (i = start_id; i < start_id + num_queues; i++) {
702 int gve_adminq_destroy_tx_queues(struct gve_priv *priv, u32 start_id, u32 num_queues) argument
707 for (i = start_id; i < start_id + num_queues; i++) {
/linux-master/drivers/message/fusion/
H A Dmptsas.h186 u8 start_id; /* starting logical target id */ member in struct:mptsas_enclosure
/linux-master/drivers/soc/hisilicon/
H A Dkunpeng_hccs.h149 u8 start_id; member in struct:hccs_req_head
H A Dkunpeng_hccs.c524 u8 start_id; local
530 start_id = die->min_port_id;
531 while (start_id <= die->max_port_id) {
534 req_head->start_id = start_id;
544 start_id, die->die_id, ret);
550 if (unlikely(rsp_head.next_id <= start_id)) {
553 rsp_head.next_id, start_id, die->die_id);
556 start_id = rsp_head.next_id;
/linux-master/tools/lib/bpf/
H A Dbpf.h479 LIBBPF_API int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id);
480 LIBBPF_API int bpf_map_get_next_id(__u32 start_id, __u32 *next_id);
481 LIBBPF_API int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id);
482 LIBBPF_API int bpf_link_get_next_id(__u32 start_id, __u32 *next_id);
H A Dbtf.c102 int start_id; member in struct:btf
428 pr_warn("BTF type [%d] is malformed\n", btf->start_id + btf->nr_types);
612 return btf->start_id + btf->nr_types;
625 if (type_id < btf->start_id)
627 return btf->types_data + btf->type_offs[type_id - btf->start_id];
632 if (type_id >= btf->start_id + btf->nr_types)
911 static __s32 btf_find_by_name_kind(const struct btf *btf, int start_id, argument
919 for (i = start_id; i < nr_types; i++) {
936 return btf_find_by_name_kind(btf, btf->start_id, type_name, kind);
984 btf->start_id
[all...]
H A Dbpf.c1011 static int bpf_obj_get_next_id(__u32 start_id, __u32 *next_id, int cmd) argument
1018 attr.start_id = start_id;
1027 int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id) argument
1029 return bpf_obj_get_next_id(start_id, next_id, BPF_PROG_GET_NEXT_ID);
1032 int bpf_map_get_next_id(__u32 start_id, __u32 *next_id) argument
1034 return bpf_obj_get_next_id(start_id, next_id, BPF_MAP_GET_NEXT_ID);
1037 int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id) argument
1039 return bpf_obj_get_next_id(start_id, next_id, BPF_BTF_GET_NEXT_ID);
1042 int bpf_link_get_next_id(__u32 start_id, __u3 argument
[all...]
H A Dlinker.c2256 int i, j, n, start_id, id; local
2262 start_id = btf__type_cnt(linker->btf);
2325 for (i = start_id; i < n; i++) {
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dbtf_dedup_split.c332 static void btf_add_dup_struct_in_cu(struct btf *btf, int start_id) argument
334 #define ID(n) (start_id + n)
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dadf_gen4_hw_data.c442 unsigned int ae_mask, start_id, worker_obj_cnt, i; local
459 start_id = worker_obj_cnt - RP_GROUP_COUNT;
461 for (i = start_id; i < worker_obj_cnt; i++) {
/linux-master/include/uapi/linux/
H A Dvirtio_snd.h113 __le32 start_id; member in struct:virtio_snd_query_info
H A Dbpf.h397 * Looks for the eBPF program with an id greater than *start_id*
399 * remain with ids higher than *start_id*, returns -1 and sets
410 * Looks for the eBPF map with an id greater than *start_id*
412 * remain with ids higher than *start_id*, returns -1 and sets
624 * Looks for the BTF object with an id greater than *start_id*
626 * remain with ids higher than *start_id*, returns -1 and sets
809 * Looks for the eBPF link with an id greater than *start_id*
811 * remain with ids higher than *start_id*, returns -1 and sets
1625 __u32 start_id; member in union:bpf_attr::__anon2600::__anon2601
/linux-master/tools/bpf/bpftool/
H A Dbtf.c438 int start_id = 1; local
442 start_id = btf__type_cnt(base);
444 for (i = start_id; i < cnt; i++) {
/linux-master/sound/hda/
H A Dhdac_device.c352 * @start_id: the pointer to store the starting NID
358 hda_nid_t *start_id)
364 *start_id = 0;
367 *start_id = (parm >> 16) & 0x7fff;
357 snd_hdac_get_sub_nodes(struct hdac_device *codec, hda_nid_t nid, hda_nid_t *start_id) argument
/linux-master/kernel/bpf/
H A Dbtf.c272 u32 start_id; /* first type ID in this BTF (0 for base BTF) */ member in struct:btf
849 while (type_id < btf->start_id)
852 type_id -= btf->start_id;
1594 if (btf->start_id + btf->types_size == BTF_MAX_TYPE) {
1837 if (type_id < env->btf->start_id)
1840 return env->visit_states[type_id - env->btf->start_id] == RESOLVED;
1852 if (type_id < btf->start_id
1853 || env->visit_states[type_id - btf->start_id] != NOT_VISITED)
1856 env->visit_states[type_id - btf->start_id] = VISITED;
1886 type_id -= btf->start_id; /* adjus
5480 btf_check_type_tags(struct btf_verifier_env *env, struct btf *btf, int start_id) argument
[all...]
/linux-master/include/sound/
H A Dhdaudio.h142 hda_nid_t *start_id);
/linux-master/drivers/scsi/qedi/
H A Dqedi_main.c533 u16 start_id, u16 next)
535 id_tbl->start = start_id;
532 qedi_init_id_tbl(struct qedi_portid_tbl *id_tbl, u16 size, u16 start_id, u16 next) argument
/linux-master/arch/arm64/kvm/vgic/
H A Dvgic-its.c2184 * @start_id: the ID of the first entry in the table
2192 int start_id, entry_fn_t fn, void *opaque)
2196 int id = start_id;
2191 scan_its_table(struct vgic_its *its, gpa_t base, int size, u32 esz, int start_id, entry_fn_t fn, void *opaque) argument
/linux-master/tools/include/uapi/linux/
H A Dbpf.h397 * Looks for the eBPF program with an id greater than *start_id*
399 * remain with ids higher than *start_id*, returns -1 and sets
410 * Looks for the eBPF map with an id greater than *start_id*
412 * remain with ids higher than *start_id*, returns -1 and sets
624 * Looks for the BTF object with an id greater than *start_id*
626 * remain with ids higher than *start_id*, returns -1 and sets
809 * Looks for the eBPF link with an id greater than *start_id*
811 * remain with ids higher than *start_id*, returns -1 and sets
1625 __u32 start_id; member in union:bpf_attr::__anon3141::__anon3142

Completed in 741 milliseconds

12