Home
last modified time | relevance | path

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

/minix/minix/drivers/power/acpi/namespace/
H A Dnsxfobj.c71 ACPI_OBJECT_TYPE *RetType) in AcpiGetType() argument
79 if (!RetType) in AcpiGetType()
90 *RetType = ACPI_TYPE_ANY; in AcpiGetType()
109 *RetType = Node->Type; in AcpiGetType()
/minix/external/bsd/llvm/dist/llvm/lib/Target/Mips/
H A DMipsOs16.cpp36 Type* RetType = F.getReturnType(); in needsFPFromSig() local
37 switch (RetType->getTypeID()) { in needsFPFromSig()
H A DMipsAsmPrinter.cpp889 const char *RetType; in EmitFPCallStub() local
897 RetType = "float"; in EmitFPCallStub()
900 RetType = "double"; in EmitFPCallStub()
903 RetType = "complex"; in EmitFPCallStub()
906 RetType = "double complex"; in EmitFPCallStub()
909 RetType = ""; in EmitFPCallStub()
936 OutStreamer.AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
H A DMips16HardFloat.cpp168 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local
169 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
173 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local
174 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
/minix/external/bsd/llvm/dist/clang/test/CodeGen/
H A Dxcore-stringtype.c94 typedef int RetType[2]; typedef
95 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2], in arrayType()
/minix/external/bsd/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp3263 Type *RetType = nullptr; in ParseFunctionHeader() local
3300 if (!FunctionType::isValidReturnType(RetType)) in ParseFunctionHeader()
3392 FunctionType::get(RetType, ParamTypeList, isVarArg); in ParseFunctionHeader()
3939 Type *RetType = nullptr; in ParseInvoke() local
3963 if (!(PFTy = dyn_cast<PointerType>(RetType)) || in ParseInvoke()
3970 if (!FunctionType::isValidReturnType(RetType)) in ParseInvoke()
3973 Ty = FunctionType::get(RetType, ParamTypes, false); in ParseInvoke()
4353 Type *RetType = nullptr; in ParseCall() local
4376 if (!(PFTy = dyn_cast<PointerType>(RetType)) || in ParseCall()
4383 if (!FunctionType::isValidReturnType(RetType)) in ParseCall()
[all …]
/minix/external/bsd/llvm/dist/clang/lib/Analysis/
H A DConsumed.cpp684 QualType RetType = Fun->getCallResultType(); in propagateReturnType() local
685 if (RetType->isReferenceType()) in propagateReturnType()
686 RetType = RetType->getPointeeType(); in propagateReturnType()
688 if (isConsumableType(RetType)) { in propagateReturnType()
693 ReturnState = mapConsumableAttrState(RetType); in propagateReturnType()
/minix/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DCasting.h44 RetType;
45 static RetType getSimplifiedValue(const From& Val) {
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp375 Type *RetType = T->getReturnType(); in getArgsFunctionType() local
376 if (!RetType->isVoidTy()) in getArgsFunctionType()
377 RetType = StructType::get(RetType, ShadowTy, (Type *)nullptr); in getArgsFunctionType()
378 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType()
388 Type *RetType = T->getReturnType(); in getTrampolineFunctionType() local
389 if (!RetType->isVoidTy()) in getTrampolineFunctionType()
411 Type *RetType = T->getReturnType(); in getCustomFunctionType() local
412 if (!RetType->isVoidTy()) in getCustomFunctionType()
/minix/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp3063 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; in BuildReturnStmt() local
3076 RetType, in BuildReturnStmt()
3079 RetType, RetValExp); in BuildReturnStmt()
H A DSemaDecl.cpp7366 QualType RetType = NewFD->getReturnType(); in ActOnFunctionDeclarator() local
7367 const CXXRecordDecl *Ret = RetType->isRecordType() ? in ActOnFunctionDeclarator()
7368 RetType->getAsCXXRecordDecl() : RetType->getPointeeCXXRecordDecl(); in ActOnFunctionDeclarator()
7382 unsigned AddressSpace = RetType.getAddressSpace(); in ActOnFunctionDeclarator()
H A DSemaDeclCXX.cpp9887 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() local
9920 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitCopyAssignment()
10279 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment() local
10309 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitMoveAssignment()