/kernel/linux/linux-5.10/kernel/bpf/ |
H A D | dispatcher.c | 52 refcount_inc(&entry->users); in bpf_dispatcher_add_prog() 62 refcount_set(&entry->users, 1); in bpf_dispatcher_add_prog() 79 if (refcount_dec_and_test(&entry->users)) { in bpf_dispatcher_remove_prog()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/ibm/emac/ |
H A D | tah.c | 31 ++dev->users; in tah_attach() 42 --dev->users; in tah_detach() 137 WARN_ON(dev->users != 0); in tah_remove()
|
/kernel/linux/linux-6.6/kernel/bpf/ |
H A D | dispatcher.c | 53 refcount_inc(&entry->users); in bpf_dispatcher_add_prog() 63 refcount_set(&entry->users, 1); in bpf_dispatcher_add_prog() 80 if (refcount_dec_and_test(&entry->users)) { in bpf_dispatcher_remove_prog()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUOpenCLEnqueuedBlockLowering.cpp | 81 for (auto U : F->users()) { in collectCallers() 101 for (auto UU : U->users()) in collectFunctionUsers() 129 for (auto U : F.users()) { in runOnModule()
|
/kernel/linux/linux-5.10/arch/xtensa/platforms/iss/ |
H A D | simdisk.c | 33 int users; member 130 ++dev->users; in simdisk_open() 139 --dev->users; in simdisk_release() 191 if (dev->users != 0) { in simdisk_detach() 273 dev->users = 0; in simdisk_setup()
|
/kernel/linux/linux-6.6/arch/xtensa/platforms/iss/ |
H A D | simdisk.c | 32 int users; member 128 ++dev->users; in simdisk_open() 137 --dev->users; in simdisk_release() 189 if (dev->users != 0) { in simdisk_detach() 272 dev->users = 0; in simdisk_setup()
|
/kernel/linux/linux-6.6/block/ |
H A D | blk-mq.h | 388 * For shared tag users, we track the number of currently active users 394 unsigned int depth, users; in hctx_may_queue() local 415 users = READ_ONCE(hctx->tags->active_queues); in hctx_may_queue() 416 if (!users) in hctx_may_queue() 422 depth = max((bt->sb.depth + users - 1) / users, 4U); in hctx_may_queue()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | linearize.h | 37 struct pseudo_user_list *users; member 279 return !pseudo_user_list_empty(p->users); in has_users() 284 return !ptr_list_multiple((struct ptr_list *)(p->users)); in one_use() 289 return pseudo_user_list_size(p->users); in nbr_users() 304 add_pseudo_user_ptr(alloc_pseudo_user(insn, pp), &p->users); in use_pseudo()
|
H A D | storage.h | 34 struct storage_ptr_list *users; member 75 add_ptr_list(&s->users, usep); in alloc_storage_hash()
|
/kernel/linux/linux-5.10/drivers/net/wireless/intersil/hostap/ |
H A D | hostap_ap.c | 192 if (atomic_read(&sta->users) != 0) in ap_handle_timer() 669 atomic_inc(&sta->users); in hostap_ap_tx_cb_auth() 688 atomic_dec(&sta->users); in hostap_ap_tx_cb_auth() 733 atomic_inc(&sta->users); in hostap_ap_tx_cb_assoc() 755 atomic_dec(&sta->users); in hostap_ap_tx_cb_assoc() 1007 sta->addr, atomic_read(&sta->users), sta->aid, in prism2_sta_proc_show() 1078 atomic_inc(&sta->users); in handle_add_proc_queue() 1087 atomic_dec(&sta->users); in handle_add_proc_queue() 1112 atomic_inc(&sta->users); in ap_add_sta() 1312 atomic_inc(&sta->users); in handle_authen() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/intersil/hostap/ |
H A D | hostap_ap.c | 192 if (atomic_read(&sta->users) != 0) in ap_handle_timer() 669 atomic_inc(&sta->users); in hostap_ap_tx_cb_auth() 688 atomic_dec(&sta->users); in hostap_ap_tx_cb_auth() 733 atomic_inc(&sta->users); in hostap_ap_tx_cb_assoc() 755 atomic_dec(&sta->users); in hostap_ap_tx_cb_assoc() 1007 sta->addr, atomic_read(&sta->users), sta->aid, in prism2_sta_proc_show() 1078 atomic_inc(&sta->users); in handle_add_proc_queue() 1087 atomic_dec(&sta->users); in handle_add_proc_queue() 1112 atomic_inc(&sta->users); in ap_add_sta() 1312 atomic_inc(&sta->users); in handle_authen() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath11k/ |
H A D | pcic.c | 69 .users = (struct ath11k_msi_user[]) { 80 .users = (struct ath11k_msi_user[]) { 90 .users = (struct ath11k_msi_user[]) { 101 .users = (struct ath11k_msi_user[]) { 112 .users = (struct ath11k_msi_user[]) { 260 if (strcmp(user_name, msi_config->users[idx].name) == 0) { in ath11k_pcic_get_user_msi_assignment() 261 *num_vectors = msi_config->users[idx].num_vectors; in ath11k_pcic_get_user_msi_assignment() 262 *base_vector = msi_config->users[idx].base_vector; in ath11k_pcic_get_user_msi_assignment()
|
/third_party/spirv-tools/source/opt/ |
H A D | interface_var_sroa.cpp | 108 // users of the loads. |loads_to_composites| is the mapping from each load to 117 std::vector<Instruction*> users; in ReplaceLoadWithCompositeConstruct() local 119 load, [&users, composite_construct](Instruction* user, uint32_t index) { in ReplaceLoadWithCompositeConstruct() 121 users.push_back(user); in ReplaceLoadWithCompositeConstruct() 124 for (Instruction* user : users) in ReplaceLoadWithCompositeConstruct() 215 std::vector<Instruction*> users; in KillInstructionAndUsers() local 217 inst, [&users](Instruction* user) { users.push_back(user); }); in KillInstructionAndUsers() 218 for (auto user : users) { in KillInstructionAndUsers() 266 std::vector<Instruction*> users; in ReplaceInterfaceVarWith() local [all...] |
/kernel/linux/linux-6.6/drivers/iommu/ |
H A D | iommu-sva.c | 84 domain->users++; in iommu_sva_bind_device() 98 domain->users = 1; in iommu_sva_bind_device() 131 if (--domain->users == 0) { in iommu_sva_unbind_device()
|
/kernel/linux/linux-5.10/drivers/media/pci/cx88/ |
H A D | cx88-input.c | 30 int users; member 227 if (core->ir->users) in cx88_ir_start() 236 if (core->ir->users) in cx88_ir_stop() 245 core->ir->users++; in cx88_ir_open() 253 core->ir->users--; in cx88_ir_close() 254 if (!core->ir->users) in cx88_ir_close()
|
/kernel/linux/linux-5.10/net/xdp/ |
H A D | xsk_buff_pool.c | 75 refcount_set(&pool->users, 1); in xp_create_and_assign_umem() 254 refcount_inc(&pool->users); in xp_get_pool() 262 if (refcount_dec_and_test(&pool->users)) { in xp_put_pool() 302 refcount_set(&dma_map->users, 1); in xp_create_dma_map() 345 if (!refcount_dec_and_test(&dma_map->users)) in xp_dma_unmap() 396 refcount_inc(&dma_map->users); in xp_dma_map()
|
/kernel/linux/linux-6.6/drivers/media/pci/cx88/ |
H A D | cx88-input.c | 30 int users; member 227 if (core->ir->users) in cx88_ir_start() 236 if (core->ir->users) in cx88_ir_stop() 245 core->ir->users++; in cx88_ir_open() 253 core->ir->users--; in cx88_ir_close() 254 if (!core->ir->users) in cx88_ir_close()
|
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/ |
H A D | atomisp_fops.c | 745 return asd->video_out_preview.users + in atomisp_subdev_users() 746 asd->video_out_vf.users + in atomisp_subdev_users() 747 asd->video_out_capture.users + in atomisp_subdev_users() 748 asd->video_out_video_capture.users + in atomisp_subdev_users() 749 asd->video_acc.users + in atomisp_subdev_users() 750 asd->video_in.users; in atomisp_subdev_users() 806 if (acc_node && acc_pipe->users) { in atomisp_open() 823 if (pipe->users) { in atomisp_open() 876 acc_pipe->users++; in atomisp_open() 878 pipe->users in atomisp_open() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/ |
H A D | tc_encap_actions.h | 36 * @users: list of &struct efx_tc_encap_action 61 struct list_head users; member 79 struct list_head list; /* entry on neigh->users list */ 80 struct list_head users; /* action sets using this encap_md */ member
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | ip6_flowlabel.c | 91 if (fl && !atomic_inc_not_zero(&fl->users)) in fl_lookup() 131 if (atomic_dec_and_test(&fl->users)) { in fl_release() 163 if (atomic_read(&fl->users) == 0) { in ip6_fl_gc() 201 atomic_read(&fl->users) == 0) { in ip6_fl_purge() 241 atomic_inc(&lfl->users); in fl_intern() 270 if (fl->label == label && atomic_inc_not_zero(&fl->users)) { in __fl6_sock_lookup() 438 atomic_set(&fl->users, 1); in fl_create() 652 if (!atomic_inc_not_zero(&fl1->users)) in ipv6_flowlabel_get() 850 atomic_read(&fl->users), in ip6fl_seq_show()
|
/kernel/linux/linux-6.6/drivers/iommu/iommufd/ |
H A D | device.c | 215 refcount_inc(&idev->obj.users); in iommufd_device_bind() 369 refcount_inc(&hwpt->obj.users); in iommufd_hw_pagetable_attach() 472 refcount_add(num_devices, &hwpt->obj.users); in iommufd_device_do_replace() 475 &old_hwpt->obj.users)); in iommufd_device_do_replace() 641 refcount_inc(&idev->obj.users); in iommufd_device_attach() 681 refcount_dec(&idev->obj.users); in iommufd_device_detach() 718 refcount_inc(&new_ioas->obj.users); in iommufd_access_change_ioas() 728 refcount_dec(&cur_ioas->obj.users); in iommufd_access_change_ioas() 797 refcount_inc(&access->obj.users); in iommufd_access_create() 863 * iommufd_access_notify_unmap - Notify users o [all...] |
/kernel/linux/linux-6.6/net/ipv6/ |
H A D | ip6_flowlabel.c | 91 if (fl && !atomic_inc_not_zero(&fl->users)) in fl_lookup() 131 if (atomic_dec_and_test(&fl->users)) { in fl_release() 163 if (atomic_read(&fl->users) == 0) { in ip6_fl_gc() 201 atomic_read(&fl->users) == 0) { in ip6_fl_purge() 242 atomic_inc(&lfl->users); in fl_intern() 273 if (fl->label == label && atomic_inc_not_zero(&fl->users)) { in __fl6_sock_lookup() 441 atomic_set(&fl->users, 1); in fl_create() 655 if (!atomic_inc_not_zero(&fl1->users)) in ipv6_flowlabel_get() 853 atomic_read(&fl->users), in ip6fl_seq_show()
|
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | stanh.S | 117 fmovel %d1,%FPCR |restore users exceptions 157 fmovel %d1,%FPCR |restore users exceptions 165 fmovel %d1,%FPCR |restore users exceptions 179 fmovel %d1,%FPCR |restore users exceptions
|
/kernel/linux/linux-5.10/drivers/net/ethernet/ibm/emac/ |
H A D | rgmii.c | 100 ++dev->users; in rgmii_attach() 178 BUG_ON(!dev || dev->users == 0); in rgmii_detach() 188 --dev->users; in rgmii_detach() 278 WARN_ON(dev->users != 0); in rgmii_remove()
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | stanh.S | 117 fmovel %d1,%FPCR |restore users exceptions 157 fmovel %d1,%FPCR |restore users exceptions 165 fmovel %d1,%FPCR |restore users exceptions 179 fmovel %d1,%FPCR |restore users exceptions
|