HomeSort by relevance Sort by last modified time
    Searched refs:FuncType (Results 1 - 25 of 33) sorted by null

1 2

  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_function.pass.cpp 28 template <class FuncType, class AllocType>
34 std::function<FuncType> f = FunctionObject();
38 assert(f.template target<FuncType>() == 0);
39 assert(f.template target<FuncType*>() == 0);
41 std::function<FuncType> f2(std::allocator_arg, alloc, f);
45 assert(f2.template target<FuncType>() == 0);
46 assert(f2.template target<FuncType*>() == 0);
52 template <class FuncType, class AllocType>
58 FuncType* target = &FreeFunction;
59 std::function<FuncType> f = target
    [all...]
alloc_F.pass.cpp 40 template <class FuncType, class AllocType>
48 std::function<FuncType> f2(std::allocator_arg, alloc, target);
52 assert(f2.template target<FuncType>() == 0);
53 assert(f2.template target<FuncType*>() == 0);
60 template <class FuncType, class AllocType>
65 FuncType* target = &FreeFunction;
67 std::function<FuncType> f2(std::allocator_arg, alloc, target);
69 assert(f2.template target<FuncType*>());
70 assert(*f2.template target<FuncType*>() == target);
71 assert(f2.template target<FuncType>() == 0)
    [all...]
  /external/swiftshader/third_party/subzero/crosstest/
test_stacksave_main.c 29 typedef uint32_t (*FuncType)(uint32_t, uint32_t, uint32_t);
32 FuncType FuncLlc;
33 FuncType FuncSz;
test_bitmanip_main.cpp 50 typedef Type (*FuncType)(Type);
53 FuncType FuncLlc;
54 FuncType FuncSz;
86 typedef Type (*FuncType)(Type);
89 FuncType FuncLlc;
90 FuncType FuncSz;
test_arith_main.cpp 252 typedef Type (*FuncType)(Type, Type);
255 FuncType FuncLlc;
256 FuncType FuncSz;
259 { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst } \
323 typedef v4f32 (*FuncType)(v4f32, v4f32);
326 FuncType FuncLlc;
327 FuncType FuncSz;
330 { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst }
    [all...]
test_sync_atomic_main.cpp 61 typedef Type (*FuncType)(bool, volatile Type *, Type);
64 FuncType FuncLlc;
65 FuncType FuncSz;
112 typedef Type (*FuncType)(volatile Type *, Type, Type);
115 FuncType FuncLlc;
116 FuncType FuncSz;
182 typedef Type (*FuncType)(bool, volatile Type *, Type);
185 FuncType FuncLlc;
186 FuncType FuncSz;
test_icmp_main.cpp 279 typedef Ty (*FuncType)(Ty, Ty);
282 FuncType FuncLlc;
283 FuncType FuncSz;
286 { STR(cmp), (FuncType)icmpi1##cmp, (FuncType)Subzero_::icmpi1##cmp } \
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVFunction.h 88 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
SPIRVFunction.cpp 77 getEncoder(O) << Type << Id << FCtrlMask << FuncType;
100 Decoder >> Type >> Id >> FCtrlMask >> FuncType;
  /external/libaom/libaom/test/
intrapred_test.cc 49 template <typename FuncType>
51 IntraPredFunc(FuncType pred = NULL, FuncType ref = NULL,
57 FuncType pred_fn;
58 FuncType ref_fn;
66 template <typename FuncType, typename Pixel>
68 : public ::testing::TestWithParam<IntraPredFunc<FuncType> > {
133 IntraPredFunc<FuncType> params_;
dr_prediction_test.cc 132 template <typename FuncType>
134 DrPredFunc(FuncType pred = NULL, FuncType tst = NULL, int bit_depth_value = 0,
139 FuncType ref_fn;
140 FuncType tst_fn;
145 template <typename Pixel, typename FuncType>
146 class DrPredTest : public ::testing::TestWithParam<DrPredFunc<FuncType> > {
302 DrPredFunc<FuncType> params_;
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
utils.h 287 static typename TermT::FuncType GetFunc(bool bArg)
299 static typename TermT::FuncType GetFunc(bool bArg, TArgsT... remainingArgs)
315 static typename TermT::FuncType GetFunc(IntArg<TMin, TMax> iArg)
328 static typename TermT::FuncType GetFunc(IntArg<TVal, TVal> iArg)
336 static typename TermT::FuncType GetFunc(IntArg<TMin, TMax> iArg, TArgsT... remainingArgs)
349 static typename TermT::FuncType GetFunc(IntArg<TVal, TVal> iArg, TArgsT... remainingArgs)
  /external/clang/test/SemaTemplate/
instantiation-default-1.cpp 83 typename FuncType = R (*)(Arg1, Arg2)>
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.h 68 template <typename FuncType>
71 TypeBuilder<FuncType, false>::get(M->getContext()),
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.h 131 template <typename FuncType>
134 TypeBuilder<FuncType, false>::get(M->getContext()),
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 220 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false);
221 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
232 DISubroutineType *FuncType =
239 CU, "f", "f", File, 4, FuncType, true, true, 3, 0, false);
409 auto *FuncType = FunctionType::get(Type::getVoidTy(C), false);
410 auto *PersFn = Function::Create(FuncType, GlobalValue::ExternalLinkage,
413 Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", OldM);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 48 template<typename FuncType>
51 TypeBuilder<FuncType, false>::get(Context),
109 template <typename FuncType>
112 TypeBuilder<FuncType, false>::get(Context),
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 48 template<typename FuncType>
51 TypeBuilder<FuncType, false>::get(Context),
109 template <typename FuncType>
112 TypeBuilder<FuncType, false>::get(Context),
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/
Cloning.cpp 368 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false);
369 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
380 DISubroutineType *FuncType =
388 DBuilder.createFunction(CU, "f", "f", File, 4, FuncType, true, true, 3,
418 DBuilder.createFunction(CU, "inlined", "inlined", File, 8, FuncType,
585 auto *FuncType = FunctionType::get(Type::getVoidTy(C), false);
586 auto *PersFn = Function::Create(FuncType, GlobalValue::ExternalLinkage,
589 Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", OldM);
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 441 typedef ReturnType (*FuncType)();
443 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
452 typedef ReturnType (*FuncType)(ArgType1);
455 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
465 typedef ReturnType (*FuncType)(ArgType1, ArgType2);
469 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
  /external/harfbuzz_ng/src/
hb-font.cc     [all...]
  /external/clang/test/Parser/
cxx0x-attributes.cpp 236 using FuncType = void ([[]] int);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
yaml2wasm.cpp 313 for (uint32_t FuncType : Section.FunctionTypes) {
314 encodeULEB128(FuncType, OS);
  /external/swiftshader/third_party/subzero/src/
IceConverter.cpp 864 FunctionType *FuncType = Func.getFunctionType();
866 Converter.convertToIceType(FuncType->getReturnType()));
867 for (size_t I = 0; I < FuncType->getNumParams(); ++I) {
869 Converter.convertToIceType(FuncType->getParamType(I)));
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 776 const FunctionType *FuncType = Decl->getFunctionType();
777 if (!FuncType)
779 QualType ReturnType = FuncType->getReturnType();
    [all...]

Completed in 1560 milliseconds

1 2