Searched refs:retType (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Hexagon/ |
| H A D | ABISysV_hexagon.cpp | 1279 llvm::Type &retType) const { in GetReturnValueObjectImpl() 1295 if (retType.isVoidTy()) { in GetReturnValueObjectImpl() 1299 else if (retType.isIntegerTy() || retType.isPointerTy()) { in GetReturnValueObjectImpl() 1309 if (retType.isIntegerTy() && retType.isSized()) { in GetReturnValueObjectImpl() 1310 uint64_t size = retType.getScalarSizeInBits(); in GetReturnValueObjectImpl()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/ |
| H A D | ABISysV_arc.cpp | 517 llvm::Type &retType) const { in GetReturnValueObjectImpl() 524 if (retType.isVoidTy()) { in GetReturnValueObjectImpl() 528 else if (retType.isIntegerTy()) { in GetReturnValueObjectImpl() 529 size_t byte_size = retType.getPrimitiveSizeInBits(); in GetReturnValueObjectImpl() 540 else if (retType.isPointerTy()) { in GetReturnValueObjectImpl() 547 else if (retType.isFloatingPointTy()) { in GetReturnValueObjectImpl() 548 const size_t byte_size = retType.getPrimitiveSizeInBits() / CHAR_BIT; in GetReturnValueObjectImpl()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGHLSLBuiltins.cpp | 543 llvm::Type *retType = llvm::Type::getInt1Ty(this->getLLVMContext()); in EmitHLSLBuiltinExpr() local 546 retType = llvm::VectorType::get( in EmitHLSLBuiltinExpr() 547 retType, ElementCount::getFixed(XVecTy->getNumElements())); in EmitHLSLBuiltinExpr() 551 return Builder.CreateIntrinsic(retType, Intrinsic::dx_isinf, in EmitHLSLBuiltinExpr() 740 llvm::Type *retType = llvm::Type::getInt32Ty(this->getLLVMContext()); in EmitHLSLBuiltinExpr() local 743 retType = llvm::VectorType::get( in EmitHLSLBuiltinExpr() 744 retType, ElementCount::getFixed(XVecTy->getNumElements())); in EmitHLSLBuiltinExpr() 752 return Builder.CreateSelect(Cmp, ConstantInt::get(retType, 0), in EmitHLSLBuiltinExpr() 753 ConstantInt::get(retType, 1), "hlsl.sign"); in EmitHLSLBuiltinExpr() 757 retType, CGM.getHLSLRuntime().getSignIntrinsic(), in EmitHLSLBuiltinExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenExprConstant.cpp | 639 QualType retType = ce->getType(); in tryEmitConstantExpr() local 641 retType = cgm.getASTContext().getLValueReferenceType(retType); in tryEmitConstantExpr() 643 return emitAbstract(ce->getBeginLoc(), ce->getAPValueResult(), retType); in tryEmitConstantExpr()
|
| H A D | CIRGenCall.cpp | 297 CanQualType retType = fnType->getReturnType() in arrangeFreeFunctionLikeCall() local 302 return cgt.arrangeCIRFunctionInfo(retType, argTypes, required); in arrangeFreeFunctionLikeCall()
|
| /freebsd/sys/contrib/zstd/programs/ |
| H A D | benchzstd.c | 130 #define RETURN_ERROR(errorNum, retType, ...) \ argument 132 retType r; \ 133 memset(&r, 0, sizeof(retType)); \
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 11335 QualType retType; in mergeFunctionTypes() local 11342 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); in mergeFunctionTypes() 11345 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes() 11347 if (retType.isNull()) in mergeFunctionTypes() 11351 retType = retType.getUnqualifiedType(); in mergeFunctionTypes() 11360 if (getCanonicalType(retType) != LRetType) in mergeFunctionTypes() 11362 if (getCanonicalType(retType) != RRetType) in mergeFunctionTypes() 11498 return getFunctionType(retType, types, EPI); in mergeFunctionTypes() 11537 return getFunctionType(retType, proto->getParamTypes(), EPI); in mergeFunctionTypes() 11542 return getFunctionNoProtoType(retType, einfo); in mergeFunctionTypes()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1046 QualType retType = T; in RewriteTypeIntoString() local 1048 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString() 1050 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()
|
| H A D | RewriteModernObjC.cpp | 1213 QualType retType = T; in RewriteTypeIntoString() local 1215 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString() 1217 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()
|