/kernel/linux/linux-6.6/tools/include/linux/ |
H A D | list.h | 366 * list_last_entry - get the last element from a list 373 #define list_last_entry(ptr, type, member) \ macro 396 (!list_empty(ptr) ? list_last_entry(ptr, type, member) : NULL) 469 for (pos = list_last_entry(head, typeof(*pos), member); \ 579 for (pos = list_last_entry(head, typeof(*pos), member), \
|
/kernel/linux/linux-6.6/drivers/dma/xilinx/ |
H A D | xilinx_dma.c | 1283 desc = list_last_entry(&chan->active_list, in xilinx_dma_tx_status() 1479 tail_desc = list_last_entry(&chan->pending_list, in xilinx_cdma_start_transfer() 1481 tail_segment = list_last_entry(&tail_desc->segments, in xilinx_cdma_start_transfer() 1551 tail_desc = list_last_entry(&chan->pending_list, in xilinx_dma_start_transfer() 1553 tail_segment = list_last_entry(&tail_desc->segments, in xilinx_dma_start_transfer() 1633 tail_desc = list_last_entry(&chan->pending_list, in xilinx_mcdma_start_transfer() 1635 tail_segment = list_last_entry(&tail_desc->segments, in xilinx_mcdma_start_transfer() 1722 seg = list_last_entry(&desc->segments, in xilinx_dma_complete_descriptor() 1942 tail_desc = list_last_entry(&chan->pending_list, in append_desc_queue() 1945 tail_segment = list_last_entry( in append_desc_queue() [all...] |
/kernel/linux/linux-5.10/drivers/dma/xilinx/ |
H A D | xilinx_dma.c | 1255 desc = list_last_entry(&chan->active_list, in xilinx_dma_tx_status() 1452 tail_desc = list_last_entry(&chan->pending_list, in xilinx_cdma_start_transfer() 1454 tail_segment = list_last_entry(&tail_desc->segments, in xilinx_cdma_start_transfer() 1524 tail_desc = list_last_entry(&chan->pending_list, in xilinx_dma_start_transfer() 1526 tail_segment = list_last_entry(&tail_desc->segments, in xilinx_dma_start_transfer() 1603 tail_desc = list_last_entry(&chan->pending_list, in xilinx_mcdma_start_transfer() 1605 tail_segment = list_last_entry(&tail_desc->segments, in xilinx_mcdma_start_transfer() 1898 tail_desc = list_last_entry(&chan->pending_list, in append_desc_queue() 1901 tail_segment = list_last_entry(&tail_desc->segments, in append_desc_queue() 1906 cdma_tail_segment = list_last_entry( in append_desc_queue() [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | list.h | 615 * list_last_entry - get the last element from a list 622 #define list_last_entry(ptr, type, member) \ macro 679 list_last_entry(head, typeof(*(pos)), member) : list_prev_entry(pos, member)) 781 for (pos = list_last_entry(head, typeof(*pos), member); \ 904 for (pos = list_last_entry(head, typeof(*pos), member), \
|
/kernel/linux/linux-6.6/include/media/ |
H A D | v4l2-fwnode.h | 412 list_last_entry(&(v4l2c)->links, struct v4l2_connector_link, head)
|
/kernel/linux/linux-5.10/tools/include/linux/ |
H A D | list.h | 366 * list_last_entry - get the last element from a list 373 #define list_last_entry(ptr, type, member) \ macro 458 for (pos = list_last_entry(head, typeof(*pos), member); \ 568 for (pos = list_last_entry(head, typeof(*pos), member), \
|
/kernel/linux/linux-5.10/include/media/ |
H A D | v4l2-fwnode.h | 563 list_last_entry(&(v4l2c)->links, struct v4l2_connector_link, head)
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | call-path.c | 59 cpb = list_last_entry(&cpr->blocks, struct call_path_block, in call_path__new()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | call-path.c | 59 cpb = list_last_entry(&cpr->blocks, struct call_path_block, in call_path__new()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | list.h | 525 * list_last_entry - get the last element from a list 532 #define list_last_entry(ptr, type, member) \ macro 639 for (pos = list_last_entry(head, typeof(*pos), member); \ 762 for (pos = list_last_entry(head, typeof(*pos), member), \
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvif/ |
H A D | list.h | 284 * first = list_last_entry(&bar->list_of_foos, struct foo, list_of_foos); 291 #define list_last_entry(ptr, type, member) \ macro
|
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/steering/ |
H A D | dr_icm_pool.c | 220 icm_mr = list_last_entry(&pool->icm_mr_list, in dr_icm_chunks_create() 479 chunk = list_last_entry(&bucket->free_list, in mlx5dr_icm_alloc_chunk()
|
H A D | dr_table.c | 20 last_matcher = list_last_entry(&tbl->matcher_list, in mlx5dr_table_set_miss_action()
|
/kernel/linux/linux-5.10/samples/bpf/ |
H A D | test_lru_dist.c | 86 #define list_last_entry(ptr, type, member) \ macro 150 node = list_last_entry(&lru->list, in pfect_lru_lookup_or_insert()
|
/kernel/linux/linux-5.10/tools/bpf/bpftool/ |
H A D | cfg.c | 57 list_last_entry(&cfg->funcs, struct func_node, l) 61 list_last_entry(&func->bbs, struct bb_node, l)
|
/kernel/linux/linux-5.10/drivers/staging/greybus/ |
H A D | spilib.c | 131 if (last_xfer == list_last_entry(&msg->transfers, in setup_next_xfer() 154 if (xfer == list_last_entry(&msg->transfers, struct spi_transfer, in get_next_xfer()
|
/kernel/linux/linux-6.6/drivers/staging/greybus/ |
H A D | spilib.c | 131 if (last_xfer == list_last_entry(&msg->transfers, in setup_next_xfer() 154 if (xfer == list_last_entry(&msg->transfers, struct spi_transfer, in get_next_xfer()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_ring_mux.c | 498 chunk = list_last_entry(&e->list, struct amdgpu_mux_chunk, entry); in amdgpu_ring_mux_ib_mark_offset() 531 chunk = list_last_entry(&e->list, struct amdgpu_mux_chunk, entry); in amdgpu_ring_mux_end_ib()
|
/kernel/linux/linux-6.6/tools/bpf/bpftool/ |
H A D | cfg.c | 57 list_last_entry(&cfg->funcs, struct func_node, l) 61 list_last_entry(&func->bbs, struct bb_node, l)
|
/kernel/linux/linux-6.6/samples/bpf/ |
H A D | test_lru_dist.c | 80 #define list_last_entry(ptr, type, member) \ macro 144 node = list_last_entry(&lru->list, in pfect_lru_lookup_or_insert()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_buddy.c | 425 node = list_last_entry(&mm->free_list[i], in get_maxblock() 460 block = list_last_entry(&mm->free_list[tmp], in alloc_from_freelist()
|
/kernel/linux/linux-5.10/drivers/base/ |
H A D | platform-msi.c | 131 desc = list_last_entry(dev_to_msi_list(dev), in platform_msi_alloc_descs_with_irq()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
H A D | selftest_context.c | 58 rq = list_last_entry(&tl->requests, typeof(*rq), link); in context_sync()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/arm/display/komeda/ |
H A D | komeda_kms.c | 102 NULL : list_last_entry(zorder_list, typeof(*last), zlist_node); in komeda_plane_state_list_add()
|
/kernel/linux/linux-5.10/drivers/usb/usbip/ |
H A D | vudc_sysfs.c | 47 usb_req = list_last_entry(&ep0->req_queue, struct vrequest, req_entry); in get_gadget_descs()
|