Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp497 CompilerType builtin_type; in CreateLLDBTypeFromPDBType() local
499 builtin_type = GetBuiltinTypeForPDBEncodingAndBitSize( in CreateLLDBTypeFromPDBType()
502 builtin_type = m_ast.GetBasicType(eBasicTypeInt); in CreateLLDBTypeFromPDBType()
510 builtin_type, isScoped); in CreateLLDBTypeFromPDBType()
706 auto *builtin_type = llvm::dyn_cast<PDBSymbolTypeBuiltin>(&type); in CreateLLDBTypeFromPDBType() local
707 assert(builtin_type); in CreateLLDBTypeFromPDBType()
708 PDB_BuiltinType builtin_kind = builtin_type->getBuiltinType(); in CreateLLDBTypeFromPDBType()
713 if (uint64_t size = builtin_type->getLength()) in CreateLLDBTypeFromPDBType()
717 m_ast, *builtin_type, encoding, bytes.value_or(0) * 8); in CreateLLDBTypeFromPDBType()
719 if (builtin_type->isConstType()) in CreateLLDBTypeFromPDBType()
[all …]
/src/usr.bin/m4/
H A Dlook.c149 n->builtin_type = MACRTYPE; in create_entry()
241 n->builtin_type = type; in setup_builtin()
274 if (p == NULL || p->builtin_type == MACRTYPE) in macro_getbuiltin()
H A Dextern.h83 #define macro_builtin_type(p) ((p)->builtin_type)
H A Dmdef.h143 unsigned int builtin_type; member
/src/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3205 const clang::BuiltinType *builtin_type = in IsIntegerType() local
3208 if (builtin_type) { in IsIntegerType()
3209 if (builtin_type->isInteger()) { in IsIntegerType()
3210 is_signed = builtin_type->isSignedInteger(); in IsIntegerType()
3836 const clang::BuiltinType *builtin_type = in GetTypeInfo() local
3840 switch (builtin_type->getKind()) { in GetTypeInfo()
3880 if (builtin_type->isInteger()) { in GetTypeInfo()
3882 if (builtin_type->isSignedInteger()) in GetTypeInfo()
3884 } else if (builtin_type->isFloatingPoint()) in GetTypeInfo()