Home
last modified time | relevance | path

Searched refs:plist (Results 1 – 21 of 21) sorted by relevance

/linux/arch/mips/fw/cfe/
H A Dcfe_api.c82 xiocb.plist.xiocb_cpuctl.cpu_number = cpu; in cfe_cpu_start()
83 xiocb.plist.xiocb_cpuctl.cpu_command = CFE_CPU_CMD_START; in cfe_cpu_start()
84 xiocb.plist.xiocb_cpuctl.gp_val = gp; in cfe_cpu_start()
85 xiocb.plist.xiocb_cpuctl.sp_val = sp; in cfe_cpu_start()
86 xiocb.plist.xiocb_cpuctl.a1_val = a1; in cfe_cpu_start()
87 xiocb.plist.xiocb_cpuctl.start_addr = (long) fn; in cfe_cpu_start()
103 xiocb.plist.xiocb_cpuctl.cpu_number = cpu; in cfe_cpu_stop()
104 xiocb.plist.xiocb_cpuctl.cpu_command = CFE_CPU_CMD_STOP; in cfe_cpu_stop()
120 xiocb.plist.xiocb_envbuf.enum_idx = idx; in cfe_enumenv()
121 xiocb.plist.xiocb_envbuf.name_ptr = XPTR_FROM_NATIVE(name); in cfe_enumenv()
[all …]
H A Dcfe_api_int.h132 } plist; member
/linux/include/acpi/
H A Dacoutput.h200 * the plist contains a set of parens to allow variable-length lists.
203 #define ACPI_INFO(plist) acpi_info plist argument
204 #define ACPI_WARNING(plist) acpi_warning plist argument
205 #define ACPI_WARNING_ONCE(plist) ACPI_ONCE(acpi_warning, plist) argument
206 #define ACPI_EXCEPTION(plist) acpi_exception plist argument
207 #define ACPI_ERROR(plist) acpi_erro argument
208 ACPI_ERROR_ONCE(plist) global() argument
209 ACPI_BIOS_WARNING(plist) global() argument
210 ACPI_BIOS_EXCEPTION(plist) global() argument
211 ACPI_BIOS_ERROR(plist) global() argument
218 ACPI_INFO(plist) global() argument
219 ACPI_WARNING(plist) global() argument
220 ACPI_WARNING_ONCE(plist) global() argument
221 ACPI_EXCEPTION(plist) global() argument
222 ACPI_ERROR(plist) global() argument
223 ACPI_ERROR_ONCE(plist) global() argument
224 ACPI_BIOS_WARNING(plist) global() argument
225 ACPI_BIOS_EXCEPTION(plist) global() argument
226 ACPI_BIOS_ERROR(plist) global() argument
295 ACPI_DEBUG_PRINT(plist) global() argument
296 ACPI_DEBUG_PRINT_RAW(plist) global() argument
318 ACPI_DEBUG_PRINT(plist) global() argument
319 ACPI_DEBUG_PRINT_RAW(plist) global() argument
[all...]
/linux/drivers/irqchip/
H A Dirq-loongarch-avec.c75 struct pending_list *plist = per_cpu_ptr(&pending_list, cpu); in avecintc_mask_irq()
77 INIT_LIST_HEAD(&plist->head);
82 struct pending_list *plist;
85 plist = per_cpu_ptr(&pending_list, adata->prev_cpu); in pending_list_init() local
86 list_add_tail(&adata->entry, &plist->head); in pending_list_init()
143 struct pending_list *plist = per_cpu_ptr(&pending_list, cpu); in avecintc_cpu_online()
150 if (!list_empty(&plist->head)) in avecintc_cpu_offline()
160 struct pending_list *plist = this_cpu_ptr(&pending_list); in avecintc_cpu_offline()
167 list_for_each_entry_safe(adata, tdata, &plist->head, entry) { in complete_irq_moving()
92 struct pending_list *plist; avecintc_sync() local
152 struct pending_list *plist = per_cpu_ptr(&pending_list, cpu); avecintc_cpu_offline() local
169 struct pending_list *plist = this_cpu_ptr(&pending_list); complete_irq_moving() local
/linux/drivers/gpu/drm/i915/
H A Di915_scheduler.h19 #define priolist_for_each_request(it, plist) \ argument
20 list_for_each_entry(it, &(plist)->requests, sched.link)
22 #define priolist_for_each_request_consume(it, n, plist) \ argument
23 list_for_each_entry_safe(it, n, &(plist)->requests, sched.link)
/linux/drivers/infiniband/sw/siw/
H A Dsiw_mem.c50 kfree(umem->page_chunk[i].plist); in siw_umem_release()
368 struct page **plist; in siw_umem_get()
371 plist = kzalloc_objs(struct page *, nents); in siw_umem_get()
372 if (!plist) { in siw_umem_get()
376 umem->page_chunk[i].plist = plist; in siw_umem_get()
381 plist[pix] = sg_page_iter_page(&sg_iter); in siw_umem_get()
378 struct page **plist = siw_umem_get() local
H A Dsiw_mem.h64 return umem->page_chunk[chunk_idx].plist[page_in_chunk]; in siw_get_upage()
H A Dsiw.h117 struct page **plist; member
/linux/drivers/acpi/acpica/
H A Dacmacros.h421 * the plist contains a set of parens to allow variable-length lists.
426 #define ACPI_WARN_PREDEFINED(plist) acpi_ut_predefined_warning plist argument
427 #define ACPI_INFO_PREDEFINED(plist) acpi_ut_predefined_info plist argument
428 #define ACPI_BIOS_ERROR_PREDEFINED(plist) acpi_ut_predefined_bios_error plist argument
437 #define ACPI_WARN_PREDEFINED(plist) argument
438 #define ACPI_INFO_PREDEFINED(plist) argument
439 #define ACPI_BIOS_ERROR_PREDEFINED(plist) argument
[all...]
/linux/net/sched/
H A Dcls_bpf.c33 struct list_head plist; member
90 list_for_each_entry_rcu(prog, &head->plist, link) { in cls_bpf_classify()
251 INIT_LIST_HEAD_RCU(&head->plist); in cls_bpf_init()
309 *last = list_empty(&head->plist); in cls_bpf_delete()
319 list_for_each_entry_safe(prog, tmp, &head->plist, link) in cls_bpf_destroy()
331 list_for_each_entry(prog, &head->plist, link) { in cls_bpf_get()
521 list_add_rcu(&prog->link, &head->plist); in cls_bpf_change()
646 list_for_each_entry(prog, &head->plist, link) { in cls_bpf_walk()
661 list_for_each_entry(prog, &head->plist, link) { in cls_bpf_reoffload()
/linux/drivers/staging/rtl8723bs/core/
H A Drtw_mlme.c144 struct list_head *plist = NULL; in rtw_alloc_network() local
152 plist = get_next(&free_queue->queue); in rtw_alloc_network()
154 pnetwork = container_of(plist, struct wlan_network, list); in rtw_alloc_network()
223 struct list_head *phead, *plist; in _rtw_find_network() local
232 list_for_each(plist, phead) { in _rtw_find_network()
233 pnetwork = list_entry(plist, struct wlan_network, list); in _rtw_find_network()
239 if (plist == phead) in _rtw_find_network()
248 struct list_head *phead, *plist, *tmp; in rtw_free_network_queue() local
256 list_for_each_safe(plist, tmp, phead) { in rtw_free_network_queue()
257 pnetwork = list_entry(plist, struc in rtw_free_network_queue()
374 struct list_head *phead, *plist; _rtw_find_same_network() local
393 struct list_head *plist, *phead; rtw_get_oldest_wlan_network() local
475 struct list_head *plist, *phead; rtw_update_scanned_network() local
795 struct list_head *plist, *phead, *ptemp; free_scanqueue() local
[all...]
/linux/arch/x86/kernel/cpu/microcode/
H A Damd.c47 struct list_head plist;
856 list_for_each_entry(p, &microcode_cache, plist) in cache_find_patch()
886 list_for_each_entry(p, &microcode_cache, plist) { in update_cache()
898 list_replace(&p->plist, &new_patch->plist); in update_cache()
905 list_add_tail(&new_patch->plist, &microcode_cache); in free_cache()
912 list_for_each_entry_safe(p, tmp, &microcode_cache, plist) { in free_cache()
913 __list_del(p->plist.prev, p->plist.next); in free_cache()
1109 INIT_LIST_HEAD(&patch->plist); in verify_and_add_patch()
46 struct list_head plist; global() member
[all...]
/linux/drivers/tty/vt/
H A Dconsolemap.c635 struct unipair *plist; in con_set_unimap() local
663 for (plist = unilist; ct; ct--, plist++) { in con_set_unimap()
664 int err1 = con_insert_unipair(dict, plist->unicode, plist->fontpos); in con_set_unimap()
/linux/net/dccp/
H A Dfeat.c
/linux/tools/perf/util/
H A Dprobe-file.c325 struct strlist *plist) in probe_file__get_events() argument
332 if (!plist) in probe_file__get_events()
343 ret = strlist__add(plist, ent->s); in probe_file__get_events()
/linux/include/linux/
H A Drhashtable.h794 struct rhlist_head *plist; in __rhashtable_insert_fast()
813 plist = container_of(head, struct rhlist_head, rhead); in __rhashtable_insert_fast()
815 RCU_INIT_POINTER(list->next, plist); in __rhashtable_insert_fast()
792 struct rhlist_head *plist; __rhashtable_insert_fast() local
/linux/lib/
H A Drhashtable.c543 struct rhlist_head *plist; in rhashtable_lookup_one() local
558 plist = container_of(head, struct rhlist_head, rhead); in rhashtable_lookup_one()
560 RCU_INIT_POINTER(list->next, plist); in rhashtable_lookup_one()
H A DKconfig.debug1828 linked-list (plist) walking routines. This checks the entire
/linux/drivers/scsi/be2iscsi/
H A Dbe_main.c1483 struct list_head *plist; in beiscsi_hdl_purge_handles() local
1485 plist = &pasync_ctx->async_entry[cri].wq.list; in beiscsi_hdl_purge_handles()
1486 list_for_each_entry_safe(pasync_handle, tmp_handle, plist, link) in beiscsi_hdl_purge_handles()
1613 struct list_head *plist; in beiscsi_hdl_fwd_pdu() local
1615 plist = &pasync_ctx->async_entry[cri].wq.list; in beiscsi_hdl_fwd_pdu()
1617 list_for_each_entry(pasync_handle, plist, link) { in beiscsi_hdl_fwd_pdu()
/linux/net/tipc/
H A Dmsg.h49 struct plist;
/linux/tools/power/pm-graph/
H A Dsleepgraph.py1563 plist = self.sortedPhases()
1564 if len(plist) < depth:
1566 return plist[-1*depth]