Searched refs:type_width (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | UdtRecordCompleter.cpp | 181 unsigned type_width = decl->getASTContext().getIntWidth(qual_type); in visitKnownMember() local 185 if (type_width >= constant_width) { in visitKnownMember() 187 decl, constant.Value.extOrTrunc(type_width)); in visitKnownMember() 194 member_ct.GetTypeName(), type_width, constant_width); in visitKnownMember() 202 if (type_width == constant_width) { in visitKnownMember() 215 member_ct.GetTypeName(), type_width, constant_width); in visitKnownMember()
|
/openbsd/gnu/llvm/lldb/source/DataFormatters/ |
H A D | StringPrinter.cpp | 415 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()
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 1304 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers() local 1308 if (type_width >= constant_width) { in AddRecordMembers() 1310 decl, value.toAPSInt().extOrTrunc(type_width)); in AddRecordMembers() 1317 member_comp_type.GetTypeName(), type_width, in AddRecordMembers() 1325 if (type_width == constant_width) { in AddRecordMembers() 1335 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | Target.cpp | 1994 size_t type_width, bool force_live_memory) { in ReadStringFromMemory() argument 1995 if (!dst || !max_bytes || !type_width || max_bytes < type_width) in ReadStringFromMemory() 2003 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory() 2006 assert(sizeof(terminator) >= type_width && "Attempting to validate a " in ReadStringFromMemory() 2025 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory() 2027 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory() 2028 if (::memcmp(&dst[i], terminator, type_width) == 0) { in ReadStringFromMemory()
|
/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
H A D | Target.h | 1084 Status &error, size_t type_width,
|