Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_arit_overflow.c69 unsigned type_width; in build_binary_int_overflow() local
79 type_width = LLVMGetIntTypeWidth(type_ref); in build_binary_int_overflow()
81 debug_assert(type_width == 16 || type_width == 32 || type_width == 64); in build_binary_int_overflow()
84 intr_prefix, type_width); in build_binary_int_overflow()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
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()
/external/llvm-project/lldb/source/DataFormatters/
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()
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DPDBASTParser.cpp1273 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers() local
1277 if (type_width >= constant_width) { in AddRecordMembers()
1279 decl, value.toAPSInt().extOrTrunc(type_width)); in AddRecordMembers()
1286 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
1294 if (type_width == constant_width) { in AddRecordMembers()
1304 member_comp_type.GetTypeName(), type_width, in AddRecordMembers()
/external/llvm-project/lldb/source/Target/
DProcess.cpp2092 Status &error, size_t type_width) { in ReadStringFromMemory() argument
2094 if (dst && max_bytes && type_width && max_bytes >= type_width) { in ReadStringFromMemory()
2098 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
2101 assert(sizeof(terminator) >= type_width && "Attempting to validate a " in ReadStringFromMemory()
2122 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
2124 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
2125 if (::memcmp(&dst[i], terminator, type_width) == 0) { in ReadStringFromMemory()
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h1540 Status &error, size_t type_width = 1);