Home
last modified time | relevance | path

Searched refs:UnsignedLongTy (Results 1 – 25 of 51) sorted by relevance

123

/external/clang/lib/CodeGen/
DCGBlocks.cpp80 llvm::Type *ulong = CGM.getTypes().ConvertType(C.UnsignedLongTy); in buildBlockDescriptor()
908 llvm::Type *UnsignedLongTy = in getBlockDescriptorType() local
909 getTypes().ConvertType(getContext().UnsignedLongTy); in getBlockDescriptorType()
927 UnsignedLongTy, UnsignedLongTy, nullptr); in getBlockDescriptorType()
DCGObjC.cpp1528 llvm::Type *UnsignedLongLTy = ConvertType(getContext().UnsignedLongTy); in EmitObjCForCollectionStmt()
1530 Args.add(RValue::get(Count), getContext().UnsignedLongTy); in EmitObjCForCollectionStmt()
1535 getContext().UnsignedLongTy, in EmitObjCForCollectionStmt()
1709 getContext().UnsignedLongTy, in EmitObjCForCollectionStmt()
DCodeGenModule.cpp3352 Context.UnsignedLongTy, in getObjCFastEnumerationStateType()
3354 Context.getPointerType(Context.UnsignedLongTy), in getObjCFastEnumerationStateType()
3355 Context.getConstantArrayType(Context.UnsignedLongTy, in getObjCFastEnumerationStateType()
/external/clang/include/clang/AST/
DBuiltinTypes.def88 UNSIGNED_TYPE(ULong, UnsignedLongTy)
DASTContext.h902 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
/external/clang/lib/Analysis/
DScanfFormatString.cpp284 return ArgType::PtrTo(Ctx.UnsignedLongTy); in getArgType()
DFormatString.cpp356 return T == C.UnsignedLongTy ? Match : NoMatch; in matchesType()
DPrintfFormatString.cpp456 case LengthModifier::AsLong: return Ctx.UnsignedLongTy; in getArgType()
/external/llvm-project/clang/lib/AST/
DScanfFormatString.cpp284 return ArgType::PtrTo(Ctx.UnsignedLongTy); in getArgType()
DFormatString.cpp404 return T == C.UnsignedLongTy ? Match : NoMatch; in matchesType()
DASTContext.cpp1288 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong); in InitBuiltinTypes()
6346 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType()
6565 UnsignedLongTy, in getBlockDescriptorType()
6566 UnsignedLongTy, in getBlockDescriptorType()
6600 UnsignedLongTy, in getBlockDescriptorExtendedType()
6601 UnsignedLongTy, in getBlockDescriptorExtendedType()
6740 return UnsignedLongTy; in getNSUIntegerType()
8449 case TargetInfo::UnsignedLong: return UnsignedLongTy; in getFromTargetType()
10009 return UnsignedLongTy; in getCorrespondingUnsignedType()
10212 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy; in DecodeTypeFromStr()
DPrintfFormatString.cpp553 case LengthModifier::AsLong: return Ctx.UnsignedLongTy; in getScalarArgType()
/external/llvm-project/clang/lib/CodeGen/
DCGBlocks.cpp190 cast<llvm::IntegerType>(CGM.getTypes().ConvertType(C.UnsignedLongTy)); in buildBlockDescriptor()
1113 llvm::Type *UnsignedLongTy = in getBlockDescriptorType() local
1114 getTypes().ConvertType(getContext().UnsignedLongTy); in getBlockDescriptorType()
1131 "struct.__block_descriptor", UnsignedLongTy, UnsignedLongTy); in getBlockDescriptorType()
DCodeGenModule.cpp5116 Context.UnsignedLongTy, in getObjCFastEnumerationStateType()
5118 Context.getPointerType(Context.UnsignedLongTy), in getObjCFastEnumerationStateType()
5119 Context.getConstantArrayType(Context.UnsignedLongTy, in getObjCFastEnumerationStateType()
/external/llvm-project/clang/include/clang/AST/
DBuiltinTypes.def90 UNSIGNED_TYPE(ULong, UnsignedLongTy)
DASTContext.h971 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DPDBASTParser.cpp126 if (width == ast.getTypeSize(ast.UnsignedLongTy)) in GetBuiltinTypeForPDBEncodingAndBitSize()
127 return CompilerType(&clang_ast, ast.UnsignedLongTy.getAsOpaquePtr()); in GetBuiltinTypeForPDBEncodingAndBitSize()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp1196 arrayRef ? S.Context.UnsignedLongTy in findAtIndexGetter()
1313 arrayRef ? S.Context.UnsignedLongTy in findAtIndexSetter()
DSema.cpp232 Context.getAtomicType(Context.UnsignedLongTy)); in Initialize()
DSemaExprObjC.cpp805 Context.UnsignedLongTy, in BuildObjCArrayLiteral()
921 Context.UnsignedLongTy, in BuildObjCDictionaryLiteral()
/external/clang/lib/AST/
DASTContext.cpp1016 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong); in InitBuiltinTypes()
4790 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, in getPromotedIntegerType()
4975 UnsignedLongTy, in getBlockDescriptorType()
4976 UnsignedLongTy, in getBlockDescriptorType()
5010 UnsignedLongTy, in getBlockDescriptorExtendedType()
5011 UnsignedLongTy, in getBlockDescriptorExtendedType()
6703 case TargetInfo::UnsignedLong: return UnsignedLongTy; in getFromTargetType()
8064 return UnsignedLongTy; in getCorrespondingUnsignedType()
8179 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy; in DecodeTypeFromStr()
/external/llvm-project/clang/lib/Sema/
DSemaPseudoObject.cpp1198 arrayRef ? S.Context.UnsignedLongTy in findAtIndexGetter()
1313 arrayRef ? S.Context.UnsignedLongTy in findAtIndexSetter()
DOpenCLBuiltins.td261 def ULong : Type<"ulong", QualType<"UnsignedLongTy">>;
300 def AtomicULong : Type<"atomic_ulong", QualType<"getAtomicType(Context.UnsignedLongTy)">>;
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp820 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedLongTy)) in GetBuiltinTypeForEncodingAndBitSize()
821 return GetType(ast.UnsignedLongTy); in GetBuiltinTypeForEncodingAndBitSize()
1091 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedLongTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1092 return GetType(ast.UnsignedLongTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1113 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedLongTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize()
1114 return GetType(ast.UnsignedLongTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
1930 return ast->UnsignedLongTy.getAsOpaquePtr(); in GetOpaqueCompilerType()
2263 if (bit_size == ast.getTypeSize(ast.UnsignedLongTy)) in GetIntTypeFromBitSize()
2264 return GetType(ast.UnsignedLongTy); in GetIntTypeFromBitSize()
/external/llvm-project/lldb/unittests/Symbol/
DTestTypeSystemClang.cpp101 context.UnsignedLongTy)); in TEST_F()

123