Home
last modified time | relevance | path

Searched refs:m_count (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp123 size_t m_count = 0; member in __anon1be7be510111::AbstractListFrontEnd
170 m_count = UINT32_MAX; in Update()
198 if (m_count < 2) in HasLoop()
213 const size_t steps_to_run = std::min(count, m_count); in HasLoop()
249 if (m_count != UINT32_MAX) in CalculateNumChildren()
250 return m_count; in CalculateNumChildren()
253 m_count = 0; in CalculateNumChildren()
254 while (current && m_count < m_list_capping_size) { in CalculateNumChildren()
255 ++m_count; in CalculateNumChildren()
258 return m_count; in CalculateNumChildren()
[all …]
H A DLibCxxVector.cpp60 uint64_t m_count = 0; member in lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd
192 return m_count; in CalculateNumChildren()
201 if (idx >= m_count) in GetChildAtIndex()
203 if (m_base_data_address == 0 || m_count == 0) in GetChildAtIndex()
252 m_count = size_sp->GetValueAsUnsigned(0); in Update()
253 if (!m_count) in Update()
257 m_count = 0; in Update()
262 m_count = 0; in Update()
271 if (!m_count || !m_base_data_address) in GetIndexOfChildWithName()
H A DLibCxxMap.cpp225 size_t m_count = UINT32_MAX; member in lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd
264 m_count = node_sp->GetValueAsUnsigned(0); in CalculateNumChildrenForOldCompressedPairLayout()
266 return m_count; in CalculateNumChildrenForOldCompressedPairLayout()
271 if (m_count != UINT32_MAX) in CalculateNumChildren()
272 return m_count; in CalculateNumChildren()
285 m_count = size_sp->GetValueAsUnsigned(0); in CalculateNumChildren()
286 return m_count; in CalculateNumChildren()
379 m_count = UINT32_MAX; in Update()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp39 m_count(default_count, default_count), m_prev_gdb_format('x'), in OptionGroupFormat()
63 if (m_count.GetDefaultValue() < UINT64_MAX) in GetDefinitions()
83 if (m_count.GetDefaultValue() == 0) { in SetOptionValue()
86 error = m_count.SetValueFromString(option_arg); in SetOptionValue()
87 if (m_count.GetCurrentValue() == 0) in SetOptionValue()
137 const bool count_enabled = m_count.GetDefaultValue() < UINT64_MAX; in SetOptionValue()
174 m_count.SetCurrentValue(count); in SetOptionValue()
175 m_count.SetOptionWasSet(); in SetOptionValue()
282 m_count.Clear(); in OptionParsingStarting()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp118 m_impl.m_outsourced.m_count = length_sp->GetValueAsUnsigned(0); in Update()
155 return m_outsourced.m_count; in GetNumIndexes()
183 size_t GetNumIndexes() { return m_count; } in GetNumIndexes()
214 m_count = 0; in Clear()
223 size_t m_count = 0; member
231 m_count = ((m_indexes >> 3) & 0x7); in _lengthForInlinePayload()
233 m_count = ((m_indexes >> 3) & 0x3); in _lengthForInlinePayload()
234 return m_count; in _lengthForInlinePayload()
277 m_count = 0; in Clear()
283 size_t m_count = 0; member
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp67 : m_start_idx(0), m_stop_idx(0), m_count(0), m_clear(false) {} in CommandOptions()
78 error = m_count.SetValueFromString(option_arg, eVarSetOperationAssign); in SetOptionValue()
106 m_count.Clear(); in OptionParsingStarting()
118 OptionValueUInt64 m_count; member in CommandObjectSessionHistory::CommandOptions
130 m_options.m_count.OptionWasSet()) { in DoExecute()
141 std::pair<bool, uint64_t> count(m_options.m_count.OptionWasSet(), in DoExecute()
142 m_options.m_count.GetCurrentValue()); in DoExecute()
H A DCommandObjectThread.cpp67 if (option_arg.getAsInteger(0, m_count)) { in SetOptionValue()
68 m_count = UINT32_MAX; in SetOptionValue()
74 if (m_count == 0) in SetOptionValue()
75 m_count = UINT32_MAX; in SetOptionValue()
102 m_count = UINT32_MAX; in OptionParsingStarting()
113 uint32_t m_count; member in CommandObjectThreadBacktrace::CommandOptions
209 m_options.m_count, in DoExtendedBacktrace()
239 if (!thread->GetStatus(strm, m_options.m_start, m_options.m_count, in HandleOneThread()
2249 m_count = count; in SetOptionValue()
2253 m_count = std::numeric_limits<decltype(m_count)>::max(); in SetOptionValue()
[all …]
H A DCommandObjectPlatform.cpp579 std::string buffer(m_options.m_count, 0); in DoExecute()
582 fd, m_options.m_offset, &buffer[0], m_options.m_count, error); in DoExecute()
616 if (option_arg.getAsInteger(0, m_count)) in SetOptionValue()
629 m_count = 1; in OptionParsingStarting()
639 uint32_t m_count; member in CommandObjectPlatformFRead::CommandOptions
H A DCommandObjectMemory.cpp948 OptionGroupFindMemory() : m_count(1), m_offset(0) {} in OptionGroupFindMemory()
971 if (m_count.SetValueFromString(option_value).Fail()) in SetOptionValue()
989 m_count.Clear(); in OptionParsingStarting()
994 OptionValueUInt64 m_count; member in CommandObjectMemoryFind::OptionGroupFindMemory
1106 size_t count = m_memory_options.m_count.GetCurrentValue(); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h60 OptionValueUInt64 &GetCountValue() { return m_count; } in GetCountValue()
62 const OptionValueUInt64 &GetCountValue() const { return m_count; } in GetCountValue()
68 m_count.OptionWasSet(); in AnyOptionWasSet()
78 OptionValueUInt64 m_count; variable
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DTimer.cpp51 m_count.store(0, std::memory_order_release); in Category()
108 m_category.m_count++; in ~Timer()
134 i->m_count.store(0, std::memory_order_release); in ResetCategoryTimes()
144 uint64_t count = i->m_count.load(std::memory_order_acquire); in DumpCategoryTimes()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h25 uint32_t m_count = 0; member
28 if (m_count > 0) in Decremented()
29 return {m_count - 1}; in Decremented()
/freebsd/lib/libthr/thread/
H A Dthr_mutex.c242 pmutex->m_count = 0; in mutex_init_body()
794 m->m_count = count; in _mutex_cv_lock()
805 *count = m->m_count; in _mutex_cv_unlock()
806 m->m_count = 0; in _mutex_cv_unlock()
818 m->m_count = count; in _mutex_cv_attach()
835 *recurse = mp->m_count; in _mutex_cv_detach()
836 mp->m_count = 0; in _mutex_cv_detach()
868 if (m->m_count + 1 > 0) { in mutex_self_trylock()
869 m->m_count++; in mutex_self_trylock()
937 if (m->m_count + 1 > 0) { in mutex_self_lock()
[all …]
H A Dthr_private.h170 int m_count; member
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.h131 return m_count != count || m_num_buckets != num_buckets || in NeedsUpdate()
137 m_count = count; in UpdateSignature()
143 uint32_t m_count = 0;
H A DAppleObjCClassDescriptorV2.cpp263 m_count = extractor.GetU32_unchecked(&cursor); in Read()
338 m_count = extractor.GetU32_unchecked(&cursor); in Read()
422 m_count = extractor.GetU32_unchecked(&cursor); in Read()
454 for (uint32_t i = 0, e = method_list.m_count; i < e; ++i) { in ProcessMethodList()
488 for (uint32_t i = 0; i < relative_method_lists->m_count; i++) { in ProcessRelativeMethodLists()
588 for (uint32_t i = 0, e = ivar_list.m_count; i < e; ++i) { in Describe()
H A DAppleObjCClassDescriptorV2.h146 uint32_t m_count; member
182 uint32_t m_count;
220 uint32_t m_count;
181 uint32_t m_count; global() member
219 uint32_t m_count; global() member
H A DAppleObjCRuntimeV2.h128 uint32_t m_count = 0;
406 m_loaded_images(count, false), m_version(0), m_count(count), in SharedCacheImageHeaders()
414 uint32_t m_count; variable
H A DAppleObjCRuntimeV2.cpp1288 printf("RemoteNXMapTable.m_count = %u\n", m_count); in Dump()
1316 m_count = m_process->ReadUnsignedIntegerFromMemory( in ParseHeader()
1318 if (m_count) { in ParseHeader()
1329 success = m_count > 0 && m_buckets_ptr != LLDB_INVALID_ADDRESS; in ParseHeader()
1334 m_count = 0; in ParseHeader()
1448 uint32_t GetCount() const { return m_count; } in GetCount()
1458 uint32_t m_count = 0; member in RemoteNXMapTable
1472 m_count = hash_table.GetCount(); in UpdateSignature()
1486 if (m_count == hash_table.GetCount() && in NeedsUpdate()
1711 for (uint32_t i = 0; i < m_count; i++) { in UpdateIfNeeded()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStatistics.h220 m_name(std::move(name)), m_count(0) {} in SummaryStatistics()
226 return m_count.load(std::memory_order_relaxed); in GetSummaryCount()
258 void OnInvoked() noexcept { m_count.fetch_add(1, std::memory_order_relaxed); } in OnInvoked()
262 std::atomic<uint64_t> m_count; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTimer.h35 std::atomic<uint64_t> m_count; variable
/freebsd/sys/dev/mlx4/mlx4_core/
H A Dmlx4_mcg.c336 u32 m_count; in promisc_steering_entry() local
350 m_count = be32_to_cpu(mgm->members_count) & 0xffffff; in promisc_steering_entry()
352 *members_count = m_count; in promisc_steering_entry()
354 for (i = 0; i < m_count; i++) { in promisc_steering_entry()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp506 return m_count > 0; in CanAllowExpansion()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp3175 std::size_t m_count; member
13653 : m_count( count ), in pluralise()
13658 os << pluraliser.m_count << ' ' << pluraliser.m_label; in operator <<()
13659 if( pluraliser.m_count != 1 ) in operator <<()