Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp119 size_t m_count = 0;
166 m_count = UINT32_MAX; in Update()
194 if (m_count < 2) in HasLoop()
209 const size_t steps_to_run = std::min(count, m_count); in HasLoop()
245 if (m_count != UINT32_MAX) in CalculateNumChildren()
246 return m_count; in CalculateNumChildren()
249 m_count = 0; in CalculateNumChildren()
250 while (current && m_count < m_list_capping_size) { in CalculateNumChildren()
251 ++m_count; in CalculateNumChildren()
254 return m_count; in CalculateNumChildren()
118 size_t m_count = 0; global() member in __anon79a2c5840111::AbstractListFrontEnd
[all...]
H A DLibCxxVector.cpp64 uint64_t m_count = 0;
181 return m_count; in GetChildAtIndex()
190 if (idx >= m_count) in GetChildAtIndex()
192 if (m_base_data_address == 0 || m_count == 0) in GetChildAtIndex()
240 m_count = size_sp->GetValueAsUnsigned(0); in Update()
241 if (!m_count) in Update()
245 m_count = 0; in Update()
250 m_count = 0; in Update()
258 if (!m_count || !m_base_data_address) in GetIndexOfChildWithName()
62 uint64_t m_count = 0; global() member in lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd
H A DLibCxxMap.cpp226 size_t m_count = UINT32_MAX;
275 m_count = node_sp->GetValueAsUnsigned(0); in CalculateNumChildren()
277 return m_count;
282 if (m_count != UINT32_MAX) in GetKeyValuePair()
283 return m_count; in GetKeyValuePair()
289 m_count = node_sp->GetValueAsUnsigned(0); in GetKeyValuePair()
290 return m_count; in GetKeyValuePair()
386 m_count = UINT32_MAX;
224 size_t m_count = UINT32_MAX; global() member in lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd
/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()
/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp118 m_impl.m_outsourced.m_count = length_sp->GetValueAsUnsigned(0); in Update()
150 return m_outsourced.m_count; in GetNumIndexes()
178 size_t GetNumIndexes() { return m_count; } in GetNumIndexes()
209 m_count = 0; in Clear()
218 size_t m_count = 0; member
226 m_count = ((m_indexes >> 3) & 0x7); in _lengthForInlinePayload()
228 m_count = ((m_indexes >> 3) & 0x3); in _lengthForInlinePayload()
229 return m_count; in _lengthForInlinePayload()
272 m_count = 0; in Clear()
278 size_t m_count member
[all...]
/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp67 : m_start_idx(0), m_stop_idx(0), m_count(0), m_clear(false) {}
78 error = m_count.SetValueFromString(option_arg, eVarSetOperationAssign); in SetOptionValue()
106 m_count.Clear(); in OptionParsingStarting()
118 OptionValueUInt64 m_count;
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()
116 OptionValueUInt64 m_count; global() member in CommandObjectSessionHistory::CommandOptions
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;
209 m_options.m_count,
239 if (!thread->GetStatus(strm, m_options.m_start, m_options.m_count, in HandleOneThread()
2246 m_count = count; in SetOptionValue()
2250 m_count in SetOptionValue()
109 uint32_t m_count; global() member in CommandObjectThreadBacktrace::CommandOptions
2325 size_t m_count; global() member in CommandObjectTraceDumpInstructions::CommandOptions
[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.cpp892 OptionGroupFindMemory() : m_count(1), m_offset(0) {} in OptionGroupFindMemory()
915 if (m_count.SetValueFromString(option_value).Fail()) in SetOptionValue()
933 m_count.Clear(); in OptionParsingStarting()
938 OptionValueUInt64 m_count; member in CommandObjectMemoryFind::OptionGroupFindMemory
1079 size_t count = m_memory_options.m_count.GetCurrentValue(); in DoExecute()
/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
/llvm-project/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h25 uint32_t m_count = 0;
28 if (m_count > 0) in Decremented()
29 return {m_count - 1}; in Decremented()
26 uint32_t m_count; global() member
/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()
/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()
405 + sizeof(uint32_t); // m_count 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()
589 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; member
220 uint32_t m_count; member
H A DAppleObjCRuntimeV2.h127 uint32_t m_count = 0;
405 m_loaded_images(count, false), m_version(0), m_count(count),
413 uint32_t m_count;
411 uint32_t m_count; global() variable
H A DAppleObjCRuntimeV2.cpp1281 printf("RemoteNXMapTable.m_count = %u\n", m_count); in Dump()
1309 m_count = m_process->ReadUnsignedIntegerFromMemory( in ParseHeader()
1311 if (m_count) { in ParseHeader()
1322 success = m_count > 0 && m_buckets_ptr != LLDB_INVALID_ADDRESS; in ParseHeader()
1327 m_count = 0; in ParseHeader()
1441 uint32_t GetCount() const { return m_count; } in GetCount()
1451 uint32_t m_count = 0; member in RemoteNXMapTable
1465 m_count = hash_table.GetCount(); in UpdateSignature()
1479 if (m_count in NeedsUpdate()
[all...]
/llvm-project/lldb/include/lldb/Utility/
H A DTimer.h35 std::atomic<uint64_t> m_count; variable
/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp506 return m_count > 0; in CanAllowExpansion()