Searched refs:retType (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Hexagon/ |
H A D | ABISysV_hexagon.cpp | 1284 llvm::Type &retType) const { in GetReturnValueObjectImpl() 1300 if (retType.isVoidTy()) { in GetReturnValueObjectImpl() 1304 else if (retType.isIntegerTy() || retType.isPointerTy()) { in GetReturnValueObjectImpl() 1314 if (retType.isIntegerTy() && retType.isSized()) { in GetReturnValueObjectImpl() 1315 uint64_t size = retType.getScalarSizeInBits(); in GetReturnValueObjectImpl()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/ |
H A D | ABISysV_arc.cpp | 512 llvm::Type &retType) const { in GetReturnValueObjectImpl() 519 if (retType.isVoidTy()) { in GetReturnValueObjectImpl() 523 else if (retType.isIntegerTy()) { in GetReturnValueObjectImpl() 524 size_t byte_size = retType.getPrimitiveSizeInBits(); in GetReturnValueObjectImpl() 535 else if (retType.isPointerTy()) { in GetReturnValueObjectImpl() 542 else if (retType.isFloatingPointTy()) { in GetReturnValueObjectImpl() 543 const size_t byte_size = retType.getPrimitiveSizeInBits() / CHAR_BIT; in GetReturnValueObjectImpl()
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | benchzstd.c | 110 #define RETURN_ERROR(errorNum, retType, ...) { \ argument 111 retType r; \ 112 memset(&r, 0, sizeof(retType)); \
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTContext.cpp | 10762 QualType retType; in mergeFunctionTypes() local 10769 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); in mergeFunctionTypes() 10772 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes() 10774 if (retType.isNull()) in mergeFunctionTypes() 10778 retType = retType.getUnqualifiedType(); in mergeFunctionTypes() 10787 if (getCanonicalType(retType) != LRetType) in mergeFunctionTypes() 10789 if (getCanonicalType(retType) != RRetType) in mergeFunctionTypes() 10925 return getFunctionType(retType, types, EPI); in mergeFunctionTypes() 10964 return getFunctionType(retType, proto->getParamTypes(), EPI); in mergeFunctionTypes() 10969 return getFunctionNoProtoType(retType, einfo); in mergeFunctionTypes()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 1214 QualType retType = T; in RewriteTypeIntoString() local 1216 if (const PointerType* PT = retType->getAs<PointerType>()) in RewriteTypeIntoString() 1218 else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) in RewriteTypeIntoString()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 18428 llvm::Type *retType = llvm::Type::getInt1Ty(this->getLLVMContext()); in EmitHLSLBuiltinExpr() local 18431 retType = llvm::VectorType::get( in EmitHLSLBuiltinExpr() 18432 retType, ElementCount::getFixed(XVecTy->getNumElements())); in EmitHLSLBuiltinExpr() 18436 return Builder.CreateIntrinsic(retType, Intrinsic::dx_isinf, in EmitHLSLBuiltinExpr()
|