Home
last modified time | relevance | path

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

/freebsd/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()
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()
722 if (builtin_type->isVolatileType()) in CreateLLDBTypeFromPDBType()
[all …]
/freebsd/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
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3168 const clang::BuiltinType *builtin_type = in IsIntegerType() local
3171 if (builtin_type) { in IsIntegerType()
3172 if (builtin_type->isInteger()) { in IsIntegerType()
3173 is_signed = builtin_type->isSignedInteger(); in IsIntegerType()
3799 const clang::BuiltinType *builtin_type = in GetTypeInfo() local
3803 switch (builtin_type->getKind()) { in GetTypeInfo()
3843 if (builtin_type->isInteger()) { in GetTypeInfo()
3845 if (builtin_type->isSignedInteger()) in GetTypeInfo()
3847 } else if (builtin_type->isFloatingPoint()) in GetTypeInfo()