Home
last modified time | relevance | path

Searched refs:RetType (Results 1 – 25 of 38) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp390 using RetType = Optional<QualType>; typedef in __anon6255e2070111::StdLibraryFunctionsChecker
411 Signature(ArgTypes ArgTys, RetType RetTy) { in Signature()
1208 "isalnum", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1226 "isalpha", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1237 "isascii", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1244 "isblank", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1251 "iscntrl", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1258 "isdigit", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1265 "isgraph", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
1272 "islower", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries()
[all …]
H A DNullabilityChecker.cpp862 QualType RetType = Decl->getReturnType(); in checkPostObjCMessage() local
863 if (!RetType->isAnyPointerType()) in checkPostObjCMessage()
948 Nullability RetNullability = getNullabilityAnnotation(RetType); in checkPostObjCMessage()
/netbsd-src/sys/external/bsd/acpica/dist/namespace/
H A Dnsxfobj.c72 ACPI_OBJECT_TYPE *RetType) in AcpiGetType() argument
80 if (!RetType) in AcpiGetType()
89 *RetType = ACPI_TYPE_ANY; in AcpiGetType()
108 *RetType = Node->Type; in AcpiGetType()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/test/
H A Ddummyrange.d56 alias RetType = ElementType!(T); member
80 @property ref inout(RetType) front() inout in inout()
87 @property RetType front() const in front()
115 @property ref inout(RetType) back() inout in inout()
122 @property RetType back() const in back()
138 ref inout(RetType) opIndex(size_t index) inout in inout()
145 RetType opIndex(size_t index) const in opIndex()
150 RetType opIndexAssign(RetTypeNoAutoDecoding val, size_t index) in opIndexAssign()
155 RetType opIndexOpAssign(string op)(RetTypeNoAutoDecoding value, size_t index) in opIndexOpAssign()
160 RetType opIndexUnary(string op)(size_t index) in opIndexUnary()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/test/
H A Ddummyrange.d56 alias RetType = ElementType!(T); member
80 @property ref inout(RetType) front() inout in inout()
87 @property RetType front() const in front()
115 @property ref inout(RetType) back() inout in inout()
122 @property RetType back() const in back()
138 ref inout(RetType) opIndex(size_t index) inout in inout()
145 RetType opIndex(size_t index) const in opIndex()
150 RetType opIndexAssign(RetTypeNoAutoDecoding val, size_t index) in opIndexAssign()
155 RetType opIndexOpAssign(string op)(RetTypeNoAutoDecoding value, size_t index) in opIndexOpAssign()
160 RetType opIndexUnary(string op)(size_t index) in opIndexUnary()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Darray.d1331 alias RetType = ElementEncodingType!S[]; variable
1335 return RetType.init;
1337 return cast(RetType) s;
1669 alias RetType = typeof(return); variable
1670 alias RetTypeElement = Unqual!(ElementEncodingType!RetType);
1674 return RetType.init;
1679 static if (isSomeString!RetType &&
1683 auto sepArr = to!RetType(sep);
1717 return (() @trusted => cast(RetType) result)();
1721 auto result = appender!RetType();
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsOs16.cpp50 Type* RetType = F.getReturnType(); in needsFPFromSig() local
51 switch (RetType->getTypeID()) { in needsFPFromSig()
H A DMips16HardFloat.cpp171 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local
172 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
176 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local
177 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
H A DMipsAsmPrinter.cpp994 const char *RetType; in EmitFPCallStub() local
1002 RetType = "float"; in EmitFPCallStub()
1005 RetType = "double"; in EmitFPCallStub()
1008 RetType = "complex"; in EmitFPCallStub()
1011 RetType = "double complex"; in EmitFPCallStub()
1014 RetType = ""; in EmitFPCallStub()
1041 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
H A DResourceScriptParser.cpp764 using RetType = VersionInfoResource::VersionInfoFixed; in parseVersionInfoFixed() typedef
765 RetType Result; in parseVersionInfoFixed()
770 auto FixedType = RetType::getFixedType(*TypeResult); in parseVersionInfoFixed()
772 if (!RetType::isTypeSupported(FixedType)) in parseVersionInfoFixed()
779 size_t NumInts = RetType::isVersionType(FixedType) ? 4 : 1; in parseVersionInfoFixed()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp545 Type *RetType = F.getReturnType(); in createTailRecurseLoopHeader() local
546 if (!RetType->isVoidTy()) { in createTailRecurseLoopHeader()
548 RetPN = PHINode::Create(RetType, 2, "ret.tr", InsertPos); in createTailRecurseLoopHeader()
551 RetPN->addIncoming(UndefValue::get(RetType), NewEntry); in createTailRecurseLoopHeader()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCoroutine.cpp377 static Expr *maybeTailCall(Sema &S, QualType RetType, Expr *E, in maybeTailCall() argument
379 if (RetType->isReferenceType()) in maybeTailCall()
381 Type const *T = RetType.getTypePtr(); in maybeTailCall()
480 QualType RetType = AwaitSuspend->getCallReturnType(S.Context); in buildCoawaitCalls() local
484 maybeTailCall(S, RetType, AwaitSuspend, Loc)) in buildCoawaitCalls()
493 if (RetType->isReferenceType() || in buildCoawaitCalls()
494 (!RetType->isBooleanType() && !RetType->isVoidType())) { in buildCoawaitCalls()
497 << RetType; in buildCoawaitCalls()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Darray.d1832 alias RetType = ElementEncodingType!S[]; variable
1836 return RetType.init;
1838 return cast(RetType) s;
2133 alias RetType = typeof(return); variable
2134 alias RetTypeElement = Unqual!(ElementEncodingType!RetType);
2138 return RetType.init;
2143 static if (isSomeString!RetType &&
2144 !is(immutable ElementEncodingType!RetType == immutable ElementEncodingType!R))
2147 auto sepArr = to!RetType(sep);
2181 return (() @trusted => cast(RetType) result)();
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DConsumed.cpp686 QualType RetType = Fun->getCallResultType(); in propagateReturnType() local
687 if (RetType->isReferenceType()) in propagateReturnType()
688 RetType = RetType->getPointeeType(); in propagateReturnType()
690 if (isConsumableType(RetType)) { in propagateReturnType()
695 ReturnState = mapConsumableAttrState(RetType); in propagateReturnType()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DMatrixBuilder.h73 auto *RetType = FixedVectorType::get(EltTy, Rows * Columns);
77 Type *OverloadedTypes[] = {RetType};
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp834 Type *RetType = T->getReturnType(); in getArgsFunctionType() local
835 if (!RetType->isVoidTy()) in getArgsFunctionType()
836 RetType = StructType::get(RetType, PrimitiveShadowTy); in getArgsFunctionType()
837 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType()
846 Type *RetType = T->getReturnType(); in getTrampolineFunctionType() local
847 if (!RetType->isVoidTy()) in getTrampolineFunctionType()
852 if (!RetType->isVoidTy()) in getTrampolineFunctionType()
884 Type *RetType = T->getReturnType(); in getCustomFunctionType() local
885 if (!RetType->isVoidTy()) in getCustomFunctionType()
893 if (!RetType->isVoidTy()) in getCustomFunctionType()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1586 auto *RetType = cast<IntegerType>(Call.CB.getType()); in applyVirtualConstProp() local
1590 if (RetType->getBitWidth() == 1) { in applyVirtualConstProp()
1597 Value *ValAddr = B.CreateBitCast(Addr, RetType->getPointerTo()); in applyVirtualConstProp()
1598 Value *Val = B.CreateLoad(RetType, ValAddr); in applyVirtualConstProp()
1610 auto RetType = dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType()); in tryVirtualConstProp() local
1611 if (!RetType) in tryVirtualConstProp()
1613 unsigned BitWidth = RetType->getBitWidth(); in tryVirtualConstProp()
1632 Target.Fn->getReturnType() != RetType) in tryVirtualConstProp()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp839 DIType *RetType = nullptr; in solveDIType() local
843 RetType = Builder.createBasicType(Name, BitWidth, dwarf::DW_ATE_signed, in solveDIType()
846 RetType = Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty), in solveDIType()
857 RetType = Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty), in solveDIType()
881 RetType = DIStruct; in solveDIType()
887 RetType = Builder.createBasicType(OS.str(), Layout.getTypeSizeInBits(Ty), in solveDIType()
892 DITypeCache.insert({Ty, RetType}); in solveDIType()
893 return RetType; in solveDIType()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCasting.h44 using RetType =
47 static RetType getSimplifiedValue(const From& Val) {
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp314 static void BeginEmitFunction(raw_ostream &OS, StringRef RetType, in BeginEmitFunction() argument
317 OS << RetType << ' ' << Decl; in BeginEmitFunction()
323 OS << RetType << " DAGISEL_CLASS_COLONCOLON " << Decl << "\n"; in BeginEmitFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp765 int64_t RetType = Try->getOperand(0).getImm(); in removeUnnecessaryInstrs() local
770 std::prev(B)->getOperand(0).getImm() == RetType; in removeUnnecessaryInstrs()
1497 WebAssembly::BlockType RetType = in fixEndsAtEndOfFunction() local
1528 EndToBegin[&MI]->getOperand(0).setImm(int32_t(RetType)); in fixEndsAtEndOfFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp105 template <typename ArgType, typename RetType>
106 RetType PrivateGetDIAValue(IDiaSymbol *Symbol, in PrivateGetDIAValue()
110 return static_cast<RetType>(Value); in PrivateGetDIAValue()
112 return RetType(); in PrivateGetDIAValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp5770 Type *RetType = nullptr; in parseFunctionHeader() local
5775 parseType(RetType, RetTypeLoc, true /*void allowed*/)) in parseFunctionHeader()
5805 if (!FunctionType::isValidReturnType(RetType)) in parseFunctionHeader()
5883 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy()) in parseFunctionHeader()
5886 FunctionType *FT = FunctionType::get(RetType, ParamTypeList, IsVarArg); in parseFunctionHeader()
6548 Type *RetType = nullptr; in parseInvoke() local
6557 parseType(RetType, RetTypeLoc, true /*void allowed*/) || in parseInvoke()
6571 FunctionType *Ty = dyn_cast<FunctionType>(RetType); in parseInvoke()
6578 if (!FunctionType::isValidReturnType(RetType)) in parseInvoke()
6581 Ty = FunctionType::get(RetType, ParamTypes, false); in parseInvoke()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBTFDebug.cpp289 auto RetType = Elements[0]; in completeType() local
290 BTFType.Type = RetType ? BDebug.getTypeId(RetType) : 0; in completeType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp1403 Type *RetType = UCallee->getReturnType(); in insertAlloca() local
1405 AllocaInst *Alloc = B.CreateAlloca(RetType, 0, in insertAlloca()
1408 Align(UCallee->getParent()->getDataLayout().getTypeAllocSize(RetType))); in insertAlloca()

12