Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp170 unsigned type_width = decl->getASTContext().getIntWidth(qual_type); in visitKnownMember() local
174 if (type_width >= constant_width) { in visitKnownMember()
176 decl, constant.Value.extOrTrunc(type_width)); in visitKnownMember()
183 member_ct.GetTypeName(), type_width, constant_width); in visitKnownMember()
191 if (type_width == constant_width) { in visitKnownMember()
204 member_ct.GetTypeName(), type_width, constant_width); in visitKnownMember()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DStringPrinter.cpp415 constexpr int type_width = sizeof(SourceDataType); in ReadEncodedBufferAndDumpToStream() local
416 constexpr int origin_encoding = 8 * type_width; in ReadEncodedBufferAndDumpToStream()
452 const int bufferSPSize = sourceSize * type_width; in ReadEncodedBufferAndDumpToStream()
469 bufferSPSize, error, type_width); in ReadEncodedBufferAndDumpToStream()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1300 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers() local
1304 if (type_width >= constant_width) { in AddRecordMembers()
1306 decl, value.toAPSInt().extOrTrunc(type_width)); in AddRecordMembers()
1313 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
1321 if (type_width == constant_width) { in AddRecordMembers()
1331 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
/llvm-project-15.0.7/lldb/source/Target/
H A DTarget.cpp1948 size_t type_width, bool force_live_memory) { in ReadStringFromMemory() argument
1949 if (!dst || !max_bytes || !type_width || max_bytes < type_width) in ReadStringFromMemory()
1957 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
1960 assert(sizeof(terminator) >= type_width && "Attempting to validate a " in ReadStringFromMemory()
1979 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
1981 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
1982 if (::memcmp(&dst[i], terminator, type_width) == 0) { in ReadStringFromMemory()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DTarget.h1074 Status &error, size_t type_width,