Home
last modified time | relevance | path

Searched refs:elem_count (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/libcxxabi/test/
H A Dcxa_vec_new_overflow_PR41395.pass.cpp42 const size_t elem_count = std::size_t(1) << (sizeof(std::size_t) * 8 - 2); in test_overflow_in_multiplication() local
45 assert(check_mul_overflows(elem_count, elem_size)); in test_overflow_in_multiplication()
48 __cxxabiv1::__cxa_vec_new(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_multiplication()
58 __cxxabiv1::__cxa_vec_new2(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_multiplication()
68 __cxxabiv1::__cxa_vec_new3(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_multiplication()
80 const size_t elem_count = static_cast<size_t>(-1) / 4u; in test_overflow_in_addition() local
86 assert(!check_mul_overflows(elem_count, elem_size)); in test_overflow_in_addition()
87 assert(check_add_overflows(elem_count * elem_size, padding)); in test_overflow_in_addition()
89 __cxxabiv1::__cxa_vec_new(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_addition()
100 __cxxabiv1::__cxa_vec_new2(elem_count, elem_size, padding, dummy_ctor, in test_overflow_in_addition()
[all …]
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionGroupValueObjectDisplay.cpp113 if (option_arg.getAsInteger(0, elem_count)) { in SetOptionValue()
114 elem_count = UINT32_MAX; in SetOptionValue()
170 elem_count = 0; in OptionParsingStarting()
220 options.SetElementCount(elem_count); in GetAsDumpOptions()
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h44 PointerAsArraySettings(size_t elem_count, size_t base_elem = 0,
46 : m_element_count(elem_count), m_base_element(base_elem), in m_element_count()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionGroupValueObjectDisplay.h52 uint32_t elem_count; variable
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp420 if (m_varobj_options.elem_count > 0) { in EvaluateExpression()