/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/asp2/ |
H A D | bcmasp.c | 101 list_for_each_entry(intf, &priv->intfs, list) in bcmasp_isr() 1134 list_for_each_entry(intf, &priv->intfs, list) { in bcmasp_init_wol_per_intf() 1163 list_for_each_entry(intf, &priv->intfs, list) { in bcmasp_wol_irq_destroy_per_intf() 1218 list_for_each_entry_safe(intf, n, &priv->intfs, list) { in bcmasp_remove_intfs() 1219 list_del(&intf->list); in bcmasp_remove_intfs() 1311 list_add_tail(&intf->list, &priv->intfs); in bcmasp_probe() 1328 list_for_each_entry(intf, &priv->intfs, list) { in bcmasp_probe() 1371 list_for_each_entry(intf, &priv->intfs, list) { in bcmasp_suspend() 1417 list_for_each_entry(intf, &priv->intfs, list) { in bcmasp_resume()
|
/kernel/linux/linux-6.6/fs/ubifs/ |
H A D | recovery.c | 501 struct ubifs_scan_node, list); in fix_unclean_leb() 506 /* Add to recovery list */ in fix_unclean_leb() 516 list_add_tail(&ucleb->list, &c->unclean_leb_list); in fix_unclean_leb() 569 list); in drop_last_group() 577 list_del(&snod->list); in drop_last_group() 597 list); in drop_last_node() 602 list_del(&snod->list); in drop_last_node() 879 struct ubifs_scan_node, list); in ubifs_recover_log_leb() 1083 struct ubifs_unclean_leb, list); in ubifs_clean_lebs() 1087 list_del(&ucleb->list); in ubifs_clean_lebs() [all...] |
/kernel/linux/linux-6.6/drivers/xen/ |
H A D | pvcalls-front.c | 58 struct list_head list; member 239 if (!list_empty(&map->list)) in pvcalls_front_destroy_active() 240 list_del_init(&map->list); in pvcalls_front_destroy_active() 317 list_add_tail(&map->list, &bedata->socket_mappings); in pvcalls_front_socket() 852 list_add_tail(&map2->list, &bedata->socket_mappings); in pvcalls_front_accept() 1076 list_del(&map->list); in pvcalls_front_release() 1107 list_for_each_entry_safe(map, n, &bedata->socket_mappings, list) { in pvcalls_front_remove() 1118 list_for_each_entry_safe(map, n, &bedata->socket_mappings, list) { in pvcalls_front_remove() 1123 list_del(&map->list); in pvcalls_front_remove()
|
/kernel/linux/linux-6.6/drivers/pinctrl/sunplus/ |
H A D | sppctl.c | 831 const __be32 *list; in sppctl_dt_node_to_map() local 835 list = of_get_property(np_config, "sunplus,pins", &size); in sppctl_dt_node_to_map() 836 *num_maps = size / sizeof(*list); in sppctl_dt_node_to_map() 853 dt_pin = be32_to_cpu(list[i]); in sppctl_dt_node_to_map() 872 dt_pin = be32_to_cpu(list[i]); in sppctl_dt_node_to_map() 937 list = of_get_property(np_config, "sunplus,zerofunc", &size); in sppctl_dt_node_to_map() 938 if (list) { in sppctl_dt_node_to_map() 939 for (i = 0; i < (size / sizeof(*list)); i++) { in sppctl_dt_node_to_map() 940 dt_fun = be32_to_cpu(list[i]); in sppctl_dt_node_to_map()
|
/kernel/linux/linux-6.6/drivers/staging/vme_user/ |
H A D | vme_fake.c | 389 lm = list_entry(pos, struct vme_lm_resource, list); in fake_lm_check() 1101 /* Add master windows to list */ in fake_init() 1123 list_add_tail(&master_image->list, in fake_init() 1127 /* Add slave windows to list */ in fake_init() 1146 list_add_tail(&slave_image->list, in fake_init() 1150 /* Add location monitor to list */ in fake_init() 1162 list_add_tail(&lm->list, &fake_bridge->lm_resources); in fake_init() 1206 /* resources are stored in link list */ in fake_init() 1208 lm = list_entry(pos, struct vme_lm_resource, list); in fake_init() 1213 /* resources are stored in link list */ in fake_init() [all...] |
/kernel/linux/linux-6.6/drivers/thunderbolt/ |
H A D | nhi.c | 243 list_for_each_entry_safe(frame, n, &ring->queue, list) { in ring_write_descriptors() 246 list_move_tail(&frame->list, &ring->in_flight); in ring_write_descriptors() 296 list); in ring_work() 297 list_move_tail(&frame->list, &done); in ring_work() 312 frame = list_first_entry(&done, typeof(*frame), list); in ring_work() 317 list_del_init(&frame->list); in ring_work() 330 list_add_tail(&frame->list, &ring->queue); in __tb_ring_enqueue() 362 list); in tb_ring_poll() 363 list_del_init(&frame->list); in tb_ring_poll()
|
/kernel/linux/linux-6.6/kernel/bpf/ |
H A D | arraymap.c | 966 struct list_head list; member 979 list_for_each_entry(elem, &aux->poke_progs, list) { in prog_array_map_poke_track() 990 INIT_LIST_HEAD(&elem->list); in prog_array_map_poke_track() 997 list_add_tail(&elem->list, &aux->poke_progs); in prog_array_map_poke_track() 1011 list_for_each_entry_safe(elem, tmp, &aux->poke_progs, list) { in prog_array_map_poke_untrack() 1013 list_del_init(&elem->list); in prog_array_map_poke_untrack() 1037 list_for_each_entry(elem, &aux->poke_progs, list) { in prog_array_map_poke_run() 1123 list_for_each_entry_safe(elem, tmp, &aux->poke_progs, list) { in prog_array_map_free() 1124 list_del_init(&elem->list); in prog_array_map_free()
|
/kernel/linux/linux-6.6/io_uring/ |
H A D | io-wq.c | 30 IO_WORKER_F_FREE = 4, /* worker on free list */ 267 * Check head of free list for an available worker. If one isn't available, 428 * Worker will start processing some work. Move it to the busy list, if 487 work = container_of(node, struct io_wq_work, list); 502 wq_list_cut(&acct->work_list, &tail->list, prev); 508 node = &tail->list; 561 * the list isn't empty, it means we stalled on hashed work. 575 * work list, but isn't yet discoverable as the 858 * Iterate the passed in list and call the specific function for each 906 wq_list_add_tail(&work->list, in io_wq_insert_work() [all...] |
/kernel/linux/linux-6.6/arch/x86/events/intel/ |
H A D | pt.c | 568 * @list: linkage to struct pt_buffer's list of tables 575 struct list_head list; member 704 list_add_tail(&topa->list, &buf->tables); in topa_insert_table() 737 * topa_insert_pages() - create a list of ToPA tables 741 * This initializes a list of ToPA tables with entries from 793 list_for_each_entry(topa, &buf->tables, list) { in pt_topa_dump() 833 buf->cur = list_entry(buf->cur->list.next, struct topa, in pt_buffer_advance() 834 list); in pt_buffer_advance() 991 list_for_each_entry(topa, &buf->tables, list) { in pt_topa_entry_for_page() [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/hw/hfi1/ |
H A D | user_sdma.c | 12 #include <linux/list.h> 79 * We are assuming that if the list is enqueued somewhere, it in defer_packet_queue() 80 * is to the dmawait list since that is the only place where in defer_packet_queue() 84 if (list_empty(&pq->busy.list)) { in defer_packet_queue() 205 if (!list_empty(&pq->busy.list)) { in flush_pq_iowait() 206 list_del_init(&pq->busy.list); in flush_pq_iowait() 460 INIT_LIST_HEAD(&req->iovs[i].list); in hfi1_user_sdma_process_request() 722 INIT_LIST_HEAD(&tx->list); in user_sdma_send_pkts() 810 list_add_tail(&tx->txreq.list, &req->txps); in user_sdma_send_pkts() 1200 list_for_each_entry_safe(t, p, &req->txps, list) { in user_sdma_free_request() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath6kl/ |
H A D | main.c | 97 list_for_each_entry_safe(entry, tmp, &sta->mgmt_psq, list) { in ath6kl_sta_cleanup() 614 list_for_each_entry(vif, &ar->vif_list, list) { in ath6kl_check_ch_switch() 895 struct ath6kl_mgmt_buff, list); in ath6kl_pspoll_event() 896 list_del(&mgmt_buf->list); in ath6kl_pspoll_event() 1086 vif = list_first_entry(&ar->vif_list, struct ath6kl_vif, list); in ath6kl_vif_first() 1206 /* Keep the driver and firmware mcast list in sync. */ in ath6kl_set_multicast_list() 1207 list_for_each_entry_safe(mc_filter, tmp, &vif->mc_filter, list) { in ath6kl_set_multicast_list() 1234 list_del(&mc_filter->list); in ath6kl_set_multicast_list() 1243 list_for_each_entry(mc_filter, &vif->mc_filter, list) { in ath6kl_set_multicast_list() 1263 "Adding %pM to multicast filter list\ in ath6kl_set_multicast_list() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | usb.c | 121 struct list_head list; member 411 req = list_entry(q->next, struct brcmf_usbreq, list); in brcmf_usb_deq() 426 list_add_tail(&req->list, q); in brcmf_usb_enq() 449 INIT_LIST_HEAD(&req->list); in brcmf_usbdev_qinit() 450 list_add_tail(&req->list, q); in brcmf_usbdev_qinit() 457 req = list_entry(q->next, struct brcmf_usbreq, list); in brcmf_usbdev_qinit() 471 list_for_each_entry_safe(req, next, q, list) { in brcmf_usb_free_q() 477 list_del_init(&req->list); in brcmf_usb_free_q() 487 list_del_init(&req->list); in brcmf_usb_del_fromq()
|
/kernel/linux/linux-6.6/drivers/nvdimm/ |
H A D | label.c | 514 /* Loop through the free list pulling in any active labels */ in nd_label_data_init() 938 list_for_each_entry(label_ent, &nd_mapping->labels, list) { in __pmem_label_update() 950 list_for_each_entry(label_ent, &nd_mapping->labels, list) in __pmem_label_update() 975 list_for_each_entry(label_ent, &nd_mapping->labels, list) in init_labels() 988 list_add_tail(&label_ent->list, &nd_mapping->labels); in init_labels() 1017 LIST_HEAD(list); in del_labels() 1029 list_for_each_entry_safe(label_ent, e, &nd_mapping->labels, list) { in del_labels() 1041 list_move_tail(&label_ent->list, &list); in del_labels() 1044 list_splice_tail_init(&list, in del_labels() [all...] |
/kernel/linux/linux-6.6/security/apparmor/ |
H A D | domain.c | 92 typeof(*rules), list); in match_component() 130 typeof(*rules), list); in label_compound_match() 192 typeof(*rules), list); in label_components_match() 371 * @head - profile list to walk (NOT NULL) 375 * Do a linear search on the profiles in the list. There is a matching 397 list_for_each_entry_rcu(profile, head, base.list) { in find_attach() 516 typeof(*rules), list); in x_table_lookup() 567 typeof(*rules), list); in x_to_label() 636 typeof(*rules), list); in profile_transition() 738 typeof(*rules), list); in profile_onexec() [all...] |
/kernel/linux/linux-6.6/net/ipv4/ |
H A D | fou_core.c | 31 struct list_head list; member 395 list_for_each_entry(p, head, list) { in gue_gro_receive() 528 list_for_each_entry(fout, &fn->fou_list, list) { in fou_add_to_port_list() 535 list_add(&fou->list, &fn->fou_list); in fou_add_to_port_list() 545 list_del(&fou->list); in fou_release() 631 list_for_each_entry(fou, &fn->fou_list, list) { in fou_destroy() 846 list_for_each_entry(fout, &fn->fou_list, list) { in fou_nl_get_doit() 873 list_for_each_entry(fout, &fn->fou_list, list) { in fou_nl_get_dumpit() 1215 list_for_each_entry_safe(fou, next, &fn->fou_list, list) in fou_exit_net()
|
/third_party/ffmpeg/tools/python/ |
H A D | convert_from_tensorflow.py | 384 assert(strides.list.i[1]==strides.list.i[2]) 385 assert(strides.list.i[0]==1) 386 assert(strides.list.i[3]==1) 387 strides = strides.list.i[1] 392 assert(filter_node.list.i[0]==1) 393 assert(filter_node.list.i[3]==1) 394 filter_height = filter_node.list.i[1] 395 filter_width = filter_node.list.i[2]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | LocaleMatcherTest.java | 152 LocalePriorityList list = LocalePriorityList.add(ULocale.JAPAN, ULocale.US).build(); in testBasics() 153 result = matcher.getBestMatchResult(list); in testBasics() 430 // When the undefined language doesn't match anything in the list, in testUndefined() 436 // When it *does* occur in the list, BestMatch returns it, as expected. in testUndefined() 765 // Common locale, exact match only in very long list. in testPerf() 812 LocalePriorityList list = LocalePriorityList.add(tags).build(); in maximizePerf() 814 long t = timeMaximize(list, few); // warm up in maximizePerf() 815 t = timeMaximize(list, few); // measure for scale in maximizePerf() 818 t = timeMaximize(list, iterations); in maximizePerf() 820 for (@SuppressWarnings("unused") ULocale locale : list) { in maximizePerf() 826 timeMaximize(Iterable<ULocale> list, int iterations) timeMaximize() argument [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | LocaleMatcherTest.java | 149 LocalePriorityList list = LocalePriorityList.add(ULocale.JAPAN, ULocale.US).build(); in testBasics() 150 result = matcher.getBestMatchResult(list); in testBasics() 449 // When the undefined language doesn't match anything in the list, in testUndefined() 455 // When it *does* occur in the list, BestMatch returns it, as expected. in testUndefined() 807 // Common locale, exact match only in very long list. in testPerf() 854 LocalePriorityList list = LocalePriorityList.add(tags).build(); in maximizePerf() 856 long t = timeMaximize(list, few); // warm up in maximizePerf() 857 t = timeMaximize(list, few); // measure for scale in maximizePerf() 860 t = timeMaximize(list, iterations); in maximizePerf() 862 for (@SuppressWarnings("unused") ULocale locale : list) { in maximizePerf() 868 timeMaximize(Iterable<ULocale> list, int iterations) timeMaximize() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | robust_av.c | 341 struct active_scs_elem, list) { in scs_request_timer() 357 dl_list_del(&scs_desc->list); in scs_request_timer() 430 dl_list_add(&wpa_s->active_scs_ids, &active_scs_elem->list); in wpas_send_scs_req() 645 struct active_scs_elem, list) { in wpas_handle_robust_av_scs_recv_action() 658 dl_list_del(&scs_desc->list); in wpas_handle_robust_av_scs_recv_action() 672 struct active_scs_elem, list) { in wpas_handle_robust_av_scs_recv_action() 678 dl_list_del(&scs_desc->list); in wpas_handle_robust_av_scs_recv_action() 690 struct active_scs_elem, list))) { in wpas_clear_active_scs_ids() 691 dl_list_del(&scs_elem->list); in wpas_clear_active_scs_ids() 1367 2 * resp_data->num_policies; /* Status list */ in wpas_send_dscp_response() [all...] |
H A D | wpa_supplicant_i.h | 13 #include "utils/list.h" 266 struct dl_list list; member 272 struct dl_list list; member 346 struct dl_list work; /* struct wpa_radio_work::list entries */ 366 struct dl_list list; member 479 struct dl_list list; member 488 struct dl_list list; member 506 struct dl_list list; member 511 struct dl_list list; member 517 struct dl_list list; member 692 struct dl_list list; global() member [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/build/scripts/ |
H A D | scons_env_cfg.py | 174 module_names = list(module_dir.keys()) 201 return list(map(lambda x:'-L%s'%x, lib_paths)) 222 return list(map(lambda x:'-L%s'%x, lib_paths)) 280 if isinstance(items, list):
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
H A D | scons_env_cfg.py | 174 module_names = list(module_dir.keys()) 201 return list(map(lambda x:'-L%s'%x, lib_paths)) 222 return list(map(lambda x:'-L%s'%x, lib_paths)) 280 if isinstance(items, list):
|
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/ |
H A D | drm_debugfs.c | 186 list_add(&tmp->list, &minor->debugfs_list); in drm_debugfs_create_files() 232 tmp = list_entry(pos, struct drm_info_node, list); in drm_debugfs_remove_files() 250 list_for_each_entry_safe(node, tmp, &minor->debugfs_list, list) in drm_debugfs_remove_all_files() 253 list_del(&node->list); in drm_debugfs_remove_all_files()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/ |
H A D | mali_kbase_csf_tiler_heap.c | 34 * The size and address of the next chunk in a list are packed into a single 82 * Unless the @chunk is the first in the kernel's list of chunks belonging to 128 * header to link the new chunk into the chunk list. 171 * the end of the list of chunks associated with that heap. The size of the 244 * and removes it from the list of chunks associated with the heap. 246 * WARNING: The deleted chunk is not unlinked from the list of chunks used by 269 * This function empties the list of chunks associated with a tiler heap by 285 * create_initial_chunks - Create the initial list of chunks for a tiler heap 291 * adds them to the list of chunks associated with that heap. 316 * initialized by @kbase_csf_tiler_heap_init and removes it from the list o [all...] |
/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/ |
H A D | abilityappmgrapprunningmanager_fuzzer.cpp | 85 std::list<pid_t> pids; in DoSomethingInterestingWithMyAPIadda() 197 std::list<pid_t> pids; in DoSomethingInterestingWithMyAPI() 200 std::vector<AppStateData> list; in DoSomethingInterestingWithMyAPI() local 201 manager->GetForegroundApplications(list); in DoSomethingInterestingWithMyAPI()
|