Home
last modified time | relevance | path

Searched refs:list (Results 1626 - 1650 of 14186) sorted by relevance

1...<<61626364656667686970>>...568

/drivers/peripheral/distributed_camera/hdi_service/include/dstream_operator/
H A Ddbuffer_manager.h19 #include <list>
58 std::list<std::shared_ptr<DImageBuffer>> idleList_ = {};
59 std::list<std::shared_ptr<DImageBuffer>> busyList_ = {};
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
H A Dice_fltr.h9 ice_fltr_add_mac_to_list(struct ice_vsi *vsi, struct list_head *list,
18 ice_fltr_add_mac_list(struct ice_vsi *vsi, struct list_head *list);
23 ice_fltr_remove_mac_list(struct ice_vsi *vsi, struct list_head *list);
/kernel/linux/linux-5.10/drivers/net/phy/
H A Dmdio-boardinfo.c10 #include <linux/list.h>
35 list_for_each_entry_safe(be, tmp, &mdio_board_list, list) { in mdiobus_setup_mdiodev_from_board_info()
74 list_add_tail(&be->list, &mdio_board_list); in mdiobus_register_board_info()
/kernel/linux/linux-5.10/drivers/usb/usbip/
H A Dstub.h9 #include <linux/list.h>
36 * Any of these list operations should be locked by priv_lock.
53 struct list_head list; member
66 struct list_head list; member
/kernel/linux/linux-5.10/fs/hmdfs/comm/
H A Dnode_cb.c8 #include <linux/list.h>
54 list_add_tail(&desc[i].list, &cb_head[evt][sync]); in hmdfs_node_add_evt_cb()
70 list_for_each_entry(desc, &cb_head[evt][sync], list) { in hmdfs_node_call_evt_cb()
/kernel/linux/linux-5.10/include/linux/gpio/
H A Dmachine.h6 #include <linux/list.h>
44 struct list_head list; member
58 struct list_head list; member
/kernel/linux/linux-6.6/fs/btrfs/
H A Dtree-mod-log.h10 struct list_head list; member
14 #define BTRFS_SEQ_LIST_INIT(name) { .list = LIST_HEAD_INIT((name).list), .seq = 0 }
/kernel/linux/linux-6.6/fs/hmdfs/comm/
H A Dnode_cb.c8 #include <linux/list.h>
54 list_add_tail(&desc[i].list, &cb_head[evt][sync]); in hmdfs_node_add_evt_cb()
70 list_for_each_entry(desc, &cb_head[evt][sync], list) { in hmdfs_node_call_evt_cb()
/kernel/linux/linux-6.6/include/linux/
H A Dreset-controller.h5 #include <linux/list.h>
32 * @list: internal list of all reset lookup entries
39 struct list_head list; member
59 * @list: internal list of reset controller devices
60 * @reset_control_head: head of internal list of requested reset controls
72 struct list_head list; member
/kernel/linux/linux-6.6/include/net/phonet/
H A Dpn_dev.h13 #include <linux/list.h>
19 struct list_head list; member
26 struct list_head list; member
/kernel/linux/linux-6.6/drivers/usb/usbip/
H A Dstub.h9 #include <linux/list.h>
36 * Any of these list operations should be locked by priv_lock.
53 struct list_head list; member
66 struct list_head list; member
/kernel/linux/linux-6.6/drivers/net/phy/
H A Dmdio-boardinfo.c10 #include <linux/list.h>
35 list_for_each_entry_safe(be, tmp, &mdio_board_list, list) { in mdiobus_setup_mdiodev_from_board_info()
74 list_add_tail(&be->list, &mdio_board_list); in mdiobus_register_board_info()
/third_party/ffmpeg/libavutil/
H A Dutils.c55 const void *list, uint64_t term) in av_int_list_length_for_size()
59 if (!list) in av_int_list_length_for_size()
62 { type t = term, *l = (type *)list; for (i = 0; l[i] != t; i++); } in av_int_list_length_for_size()
54 av_int_list_length_for_size(unsigned elsize, const void *list, uint64_t term) av_int_list_length_for_size() argument
/third_party/alsa-lib/modules/mixer/simple/
H A Dsbase.h24 #include "list.h"
57 struct list_head list; member
79 struct list_head list; member
85 struct list_head list; member
/third_party/libunwind/libunwind/src/mi/
H A DGfind_dynamic_proc_info.c43 unw_dyn_info_list_t *list; in local_find_proc_info() local
53 list = (unw_dyn_info_list_t *) (uintptr_t) _U_dyn_info_list_addr (); in local_find_proc_info()
54 for (di = list->first; di; di = di->next) in local_find_proc_info()
/third_party/mesa3d/src/mesa/main/
H A Dformat_fallback.py125 formats = list(format_parser.parse(pargs.csv))
128 'unorm_to_srgb_map': list(get_unorm_to_srgb_map(formats)),
129 'intensity_to_red_map': list(get_intensity_to_red_map(formats)),
/third_party/ltp/testcases/kernel/syscalls/llistxattr/
H A Dllistxattr01.c12 * llistxattr(2) retrieves the list of extended attribute names
39 static int has_attribute(const char *list, int llen, const char *attr) in has_attribute() argument
43 for (i = 0; i < llen; i += strlen(list + i) + 1) { in has_attribute()
44 if (!strcmp(list + i, attr)) in has_attribute()
/third_party/vk-gl-cts/external/vulkan-docs/src/config/vu-to-json/
H A Dextension.rb47 block.blocks.each do |list|
49 # Play back list attributes
50 document.playback_attributes(list.attributes)
53 list.blocks.each do |item|
55 # Attribute definitions split lists, so no need to play back attributes between list items
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DProtobufLists.java10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
49 public static <E> ProtobufList<E> mutableCopy(ProtobufList<E> list) { in mutableCopy() argument
50 int size = list.size(); in mutableCopy()
51 return list.mutableCopyWithCapacity( in mutableCopy()
/third_party/python/Lib/wsgiref/
H A Dtypes.py24 headers: list[tuple[str, str]],
37 def readlines(self, hint: int = ..., /) -> list[bytes]: ...
44 def writelines(self, seq: list[str], /) -> object: ...
/kernel/linux/linux-5.10/drivers/dma-buf/heaps/
H A Dheap-helpers.c7 #include <linux/list.h>
90 struct list_head list; member
114 INIT_LIST_HEAD(&a->list); in dma_heap_attach()
119 list_add(&a->list, &buffer->attachments); in dma_heap_attach()
132 list_del(&a->list); in dma_heap_detach()
210 list_for_each_entry(a, &buffer->attachments, list) { in dma_heap_dma_buf_begin_cpu_access()
230 list_for_each_entry(a, &buffer->attachments, list) { in dma_heap_dma_buf_end_cpu_access()
/kernel/linux/linux-5.10/arch/powerpc/mm/
H A Dinit_64.c115 * The virtual to physical mappings are tracked in a simple linked list
117 * all times where as the 'next' list maintains the available
119 * 'vmemmap_global' list during system runtime (memory hotplug remove
145 next = next->list; in vmemmap_list_alloc()
173 pr_debug("vmemap list allocation failed\n"); in vmemmap_list_populate()
179 vmem_back->list = vmemmap_list; in vmemmap_list_populate()
245 * If we don't populate vmemap list, we don't have in vmemmap_populate()
282 for (; vmem_back; vmem_back = vmem_back->list) { in vmemmap_list_free()
293 vmemmap_list = vmem_back->list; in vmemmap_list_free()
295 vmem_back_prev->list in vmemmap_list_free()
[all...]
/kernel/linux/linux-5.10/arch/x86/mm/
H A Dmmio-mod.c37 struct list_head list; member
259 list_add_tail(&trace->list, &trace_list); in ioremap_trace_core()
298 list_for_each_entry_safe(trace, tmp, &trace_list, list) { in iounmap_trace_core()
302 list_del(&trace->list); in iounmap_trace_core()
350 * i.e. nothing can traverse or modify this list. in clear_trace_list()
353 list_for_each_entry(trace, &trace_list, list) { in clear_trace_list()
361 list_for_each_entry_safe(trace, tmp, &trace_list, list) { in clear_trace_list()
362 list_del(&trace->list); in clear_trace_list()
/kernel/linux/linux-5.10/drivers/mtd/ubi/
H A Dgluebi.c20 #include <linux/list.h>
41 * @list: link in a list of gluebi devices
49 struct list_head list; member
70 list_for_each_entry(gluebi, &gluebi_devices, list) in find_gluebi_nolock()
335 list_add_tail(&gluebi->list, &gluebi_devices); in gluebi_create()
363 list_del(&gluebi->list); in gluebi_remove()
374 list_add_tail(&gluebi->list, &gluebi_devices); in gluebi_remove()
481 list_for_each_entry_safe(gluebi, g, &gluebi_devices, list) { in ubi_gluebi_exit()
/kernel/linux/linux-5.10/drivers/media/pci/cx88/
H A Dcx88-vbi.c106 buf = list_entry(q->active.next, struct cx88_buffer, list); in cx8800_restart_vbi_queue()
179 list_add_tail(&buf->list, &q->active); in buffer_queue()
185 prev = list_entry(q->active.prev, struct cx88_buffer, list); in buffer_queue()
186 list_add_tail(&buf->list, &q->active); in buffer_queue()
198 struct cx88_buffer, list); in start_streaming()
217 struct cx88_buffer, list); in stop_streaming()
219 list_del(&buf->list); in stop_streaming()

Completed in 10 milliseconds

1...<<61626364656667686970>>...568