Searched refs:array_info (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParser.cpp27 SymbolFile::ArrayInfo array_info; local
72 array_info.bit_stride = form_value.Unsigned();
76 array_info.byte_stride = form_value.Unsigned();
99 array_info.element_orders.push_back(num_elements);
101 return array_info;
H A DDWARFASTParserClang.cpp1356 std::optional<SymbolFile::ArrayInfo> array_info = ParseChildArrayInfo(die);
1359 if (array_info) {
1360 byte_stride = array_info->byte_stride;
1361 bit_stride = array_info->bit_stride;
1370 if (array_info && array_info->element_orders.size() > 0) {
1372 auto end = array_info->element_orders.rend();
1373 for (auto pos = array_info->element_orders.rbegin(); pos != end; ++pos) {
/freebsd-current/usr.sbin/mfiutil/
H A Dmfi_config.c281 struct array_info { struct
289 parse_array(int fd, int raid_type, char *array_str, struct array_info *info)
424 build_array(int fd __unused, char *arrayp, struct array_info *array_info, argument
430 ar->size = array_info->drives[0].coerced_size;
431 ar->num_drives = array_info->drive_count;
433 for (i = 0; i < array_info->drive_count; i++) {
437 array_info->drives[i].ref.v.device_id,
440 if (ar->size > array_info->drives[i].coerced_size)
441 ar->size = array_info
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp5374 if (auto array_info =
5377 num_children = array_info->element_orders.size()
5378 ? array_info->element_orders.back()

Completed in 162 milliseconds