Searched defs:FuncType (Results 1 - 17 of 17) sorted by relevance

/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_stacksave_main.c29 typedef uint32_t (*FuncType)(uint32_t, uint32_t, uint32_t); typedef
32 FuncType FuncLlc;
33 FuncType FuncSz;
H A Dtest_bitmanip_main.cpp50 typedef Type (*FuncType)(Type); typedef
53 FuncType FuncLlc;
54 FuncType FuncSz;
86 typedef Type (*FuncType)(Type); typedef
89 FuncType FuncLlc;
90 FuncType FuncSz;
H A Dtest_icmp_main.cpp279 typedef Ty (*FuncType)(Ty, Ty); typedef
282 FuncType FuncLlc;
283 FuncType FuncSz;
286 { STR(cmp), (FuncType)icmpi1##cmp, (FuncType)Subzero_::icmpi1##cmp } \
H A Dtest_arith_main.cpp252 typedef Type (*FuncType)(Type, Type); typedef
255 FuncType FuncLlc;
256 FuncType FuncSz;
259 { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst } \
323 typedef v4f32 (*FuncType)(v4f32, v4f32); typedef
326 FuncType FuncLlc;
327 FuncType FuncSz;
330 { STR(inst), (FuncType)test##inst, (FuncType)Subzero
[all...]
H A Dtest_sync_atomic_main.cpp61 typedef Type (*FuncType)(bool, volatile Type *, Type); typedef
64 FuncType FuncLlc;
65 FuncType FuncSz;
112 typedef Type (*FuncType)(volatile Type *, Type, Type); typedef
115 FuncType FuncLlc;
116 FuncType FuncSz;
182 typedef Type (*FuncType)(bool, volatile Type *, Type); typedef
185 FuncType FuncLlc;
186 FuncType FuncSz;
/external/spirv-llvm/lib/SPIRV/libSPIRV/
H A DSPIRVFunction.cpp77 getEncoder(O) << Type << Id << FCtrlMask << FuncType; local
100 Decoder >> Type >> Id >> FCtrlMask >> FuncType; local
H A DSPIRVFunction.h88 FuncType(FunctionType), FCtrlMask(FunctionControlMaskNone) {
94 SPIRVFunction():SPIRVValue(OpFunction),FuncType(NULL),
98 SPIRVTypeFunction *getFunctionType() const { return FuncType;}
137 assert(FuncType && "Invalid func type");
156 SPIRVTypeFunction *FuncType; // Function type member in class:SPIRV::SPIRVFunction
H A DSPIRVModule.cpp811 SPIRVModuleImpl::addFunction(SPIRVTypeFunction *FuncType, SPIRVId Id) { argument
812 return addFunction(new SPIRVFunction(this, FuncType,
813 getId(Id, FuncType->getNumParameters() + 1)));
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp220 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false); local
221 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
232 DISubroutineType *FuncType = local
239 CU, "f", "f", File, 4, FuncType, true, true, 3, 0, false);
409 auto *FuncType = FunctionType::get(Type::getVoidTy(C), false); local
410 auto *PersFn = Function::Create(FuncType, GlobalValue::ExternalLinkage,
413 Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", OldM);
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h441 typedef ReturnType (*FuncType)(); typedef
443 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
452 typedef ReturnType (*FuncType)(ArgType1); typedef
455 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
465 typedef ReturnType (*FuncType)(ArgType1, ArgType2); typedef
469 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
/external/deqp/modules/gles31/functional/
H A Des31fDebugTests.cpp150 enum FuncType enum in class:deqp::gles31::Functional::__anon5335::TestFunctionWrapper
156 FuncType m_type;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp776 const FunctionType *FuncType = Decl->getFunctionType(); local
777 if (!FuncType)
779 QualType ReturnType = FuncType->getReturnType();
/external/swiftshader/third_party/subzero/src/
H A DIceConverter.cpp864 FunctionType *FuncType = Func.getFunctionType(); local
866 Converter.convertToIceType(FuncType->getReturnType()));
867 for (size_t I = 0; I < FuncType->getNumParams(); ++I) {
869 Converter.convertToIceType(FuncType->getParamType(I)));
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dbinner.cpp363 typedef PFN_PROCESS_ATTRIBUTES FuncType; typedef in struct:ProcessAttributesChooser
366 static FuncType GetFunc()
861 typedef PFN_PROCESS_PRIMS FuncType; typedef in struct:FEBinTrianglesChooser
864 static FuncType GetFunc()
H A Drasterizer.cpp1777 typedef PFN_WORK_FUNC FuncType; typedef in struct:RasterizerChooser
1780 static FuncType GetFunc()
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3709 QualType FuncType; local
3713 FuncType = getSimpleFunctionType(Res, ArgTypes);
3714 else FuncType = QualType(FT, 0);
3715 return FuncType;
H A DRewriteModernObjC.cpp4552 QualType FuncType; local
4554 FuncType = getSimpleFunctionType(Res, ArgTypes);
4555 else FuncType = QualType(FT, 0);
4556 return FuncType;

Completed in 462 milliseconds