Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp152 unsigned type_width = decl->getASTContext().getIntWidth(qual_type); in visitKnownMember() local
156 if (type_width >= constant_width) { in visitKnownMember()
158 decl, constant.Value.extOrTrunc(type_width)); in visitKnownMember()
165 member_ct.GetTypeName(), type_width, constant_width); in visitKnownMember()
173 if (type_width == constant_width) { in visitKnownMember()
186 member_ct.GetTypeName(), type_width, constant_width); in visitKnownMember()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1293 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers() local
1297 if (type_width >= constant_width) { in AddRecordMembers()
1299 decl, value.toAPSInt().extOrTrunc(type_width)); in AddRecordMembers()
1306 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
1314 if (type_width == constant_width) { in AddRecordMembers()
1324 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1957 Status &error, size_t type_width) { in ReadStringFromMemory() argument
1959 if (dst && max_bytes && type_width && max_bytes >= type_width) { in ReadStringFromMemory()
1963 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
1966 assert(sizeof(terminator) >= type_width && "Attempting to validate a " in ReadStringFromMemory()
1987 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
1989 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
1990 if (::memcmp(&dst[i], terminator, type_width) == 0) { in ReadStringFromMemory()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1498 Status &error, size_t type_width = 1);