Home
last modified time | relevance | path

Searched refs:use_count (Results 1 – 25 of 25) sorted by relevance

/NextBSD/sys/contrib/vchiq/interface/vchiq_arm/
HDvchiq_debugfs.c195 int use_count; in debugfs_usecount_show() local
197 use_count = vchiq_instance_get_use_count(instance); in debugfs_usecount_show()
198 seq_printf(f, "%d\n", use_count); in debugfs_usecount_show()
276 struct dentry *top, *use_count, *trace; in vchiq_debugfs_add_instance() local
286 use_count = debugfs_create_file("use_count", in vchiq_debugfs_add_instance()
290 if (!use_count) in vchiq_debugfs_add_instance()
305 debugfs_remove(use_count); in vchiq_debugfs_add_instance()
HDvchiq_arm.c2647 int use_count; in vchiq_dump_service_use_state() member
2673 service_data[j++].use_count = service_ptr-> in vchiq_dump_service_use_state()
2698 service_data[i].use_count, in vchiq_dump_service_use_state()
2699 service_data[i].use_count ? nz : ""); in vchiq_dump_service_use_state()
2829 int use_count = 0, i; in vchiq_instance_get_use_count() local
2833 use_count += service->service_use_count; in vchiq_instance_get_use_count()
2836 return use_count; in vchiq_instance_get_use_count()
2845 int len, use_count; in proc_read_use_count() local
2847 use_count = vchiq_instance_get_use_count(instance); in proc_read_use_count()
2848 len = snprintf(page+off, count, "%d\n", use_count); in proc_read_use_count()
[all …]
HDvchiq_core.c1116 slot->use_count++; in claim_slot()
1143 if (release_count == slot_info->use_count) { in release_slot()
1659 state->rx_info->use_count = 1; in parse_rx_slots()
2758 if (slot_info->release_count != slot_info->use_count) { in release_service_messages()
3687 if (slot_info.use_count != slot_info.release_count) { in vchiq_dump_shared_state()
3689 " %d: %d/%d", i, slot_info.use_count, in vchiq_dump_shared_state()
HDvchiq_core.h281 short use_count; member
/NextBSD/usr.sbin/bhyve/
HDpci_irq.c66 int use_count; member
141 pirqs[i].use_count = 0; in pci_irq_init()
204 best_count = pirqs[0].use_count; in pirq_alloc_pin()
206 if (pirqs[pin].use_count < best_count) { in pirq_alloc_pin()
208 best_count = pirqs[pin].use_count; in pirq_alloc_pin()
211 pirqs[best_pin].use_count++; in pirq_alloc_pin()
/NextBSD/sys/contrib/octeon-sdk/
HDcvmx-shmem.c115 smdr -> shmd[i].use_count = 0; in __smdr_new()
373 dscptr->use_count += 1; in cvmx_shmem_named_block_open()
412 dscptr->use_count = 1; in cvmx_shmem_named_block_open()
609 if (dscptr->use_count >0) in __cvmx_shmem_close_dscptr()
610 dscptr->use_count-= 1; in __cvmx_shmem_close_dscptr()
612 if ((dscptr->use_count == 0) && remove) in __cvmx_shmem_close_dscptr()
725 dscptr->vaddr, dscptr->use_count); in __cvmx_shmem_smdr_display_dscptr()
HDcvmx-shmem.h86 int32_t use_count; /* must use atomic operation to maintain count */ member
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Utility/
HDSharingPtr.h57 long use_count() const {return shared_owners_ + 1;} in use_count() function
162 long use_count() const {return cntrl_ ? cntrl_->use_count() : 0;} in use_count() function
163 bool unique() const {return use_count() == 1;} in unique()
593 use_count() const in use_count() function
751 track_sp (this, ptr_, use_count()); in swap()
752 track_sp (&rhs, rhs.ptr_, rhs.use_count()); in swap()
763 use_count () const in use_count() function
766 return ptr_->use_count(); in use_count()
773 return use_count () == 1; in unique()
786 track_sp (this, ptr_, ptr_->use_count()); in add_shared()
[all …]
/NextBSD/contrib/compiler-rt/lib/msan/
HDmsan_origin.h127 int use_count = h.use_count(); in CreateChainedOrigin() local
128 if (use_count > flags()->origin_history_per_stack_limit) return prev; in CreateChainedOrigin()
/NextBSD/contrib/llvm/tools/lldb/source/Utility/
HDSharingPtr.cpp69 extern "C" void track_sp (void *sp_this, void *ptr, long use_count) in track_sp() argument
79 printf ("sp(%p) -> %p %lu\n", sp_this, ptr, use_count); in track_sp()
/NextBSD/contrib/binutils/bfd/
HDelf64-alpha.c143 int use_count; member
1707 gotent->use_count = 1; in get_got_entry()
1721 gotent->use_count += 1; in get_got_entry()
2111 gi->use_count += gs->use_count; in elf64_alpha_merge_ind_symbols()
2187 if (be->use_count == 0) in elf64_alpha_can_merge_gots()
2262 if (be->use_count == 0) in elf64_alpha_merge_gots()
2277 ae->use_count += be->use_count; in elf64_alpha_merge_gots()
2319 if (gotent->use_count > 0) in elf64_alpha_calc_got_offsets_for_symbol()
2365 if (gotent->use_count > 0) in elf64_alpha_calc_got_offsets()
2461 && gotent->use_count > 0) in elf64_alpha_size_plt_section_1()
[all …]
HDChangeLog-98993413 Assert that gotent->use_count > 0.
4860 (struct alpha_elf_link_hash_entry): Add use_count member.
HDChangeLog-02038585 (elf64_alpha_finish_dynamic_symbol): Check gotent use_count.
/NextBSD/contrib/compiler-rt/lib/sanitizer_common/
HDsanitizer_stackdepot.h30 int use_count();
HDsanitizer_stackdepot.cc91 int StackDepotHandle::use_count() { in use_count() function in __sanitizer::StackDepotHandle
/NextBSD/contrib/libc++/src/
Dfuture.cpp224 if (!__state_->__has_value() && __state_->use_count() > 1) in ~promise()
/NextBSD/contrib/libstdc++/include/tr1/
Dboost_shared_ptr.h686 use_count() const // never throws in use_count() function
872 use_count() const // never throws in use_count() function
/NextBSD/contrib/libc++/include/
Dmemory404 long use_count() const noexcept;
502 long use_count() const noexcept;
3687 long use_count() const _NOEXCEPT {
3711 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
4015 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
4017 bool unique() const _NOEXCEPT {return use_count() == 1;}
5095 long use_count() const _NOEXCEPT
5096 {return __cntrl_ ? __cntrl_->use_count() : 0;}
5099 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
Dfuture1436 if (!__state_->__has_value() && __state_->use_count() > 1)
1610 if (!__state_->__has_value() && __state_->use_count() > 1)
/NextBSD/sys/dev/mpt/
HDmpt.h187 u_int use_count; /* Instances using personality*/ member
HDmpt.c2187 pers->use_count++; in mpt_attach()
2231 pers->use_count--; in mpt_detach()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDModule.cpp127 (uint32_t)module->use_count(),
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectTarget.cpp3470 ref_count = module_sp.use_count() - 1; in PrintModule()
/NextBSD/contrib/libstdc++/
DChangeLog-20054673 shared_ptr/observers/use_count.cc: New test.
/NextBSD/contrib/gcc/
HDChangeLog-200030337 (struct argdata): Delete 'newlines' and 'use_count' fields.