Home
last modified time | relevance | path

Searched refs:InitFunction (Results 1 – 16 of 16) sorted by relevance

/external/sandboxed-api/sandboxed_api/
Dtransaction.h154 using InitFunction = std::function<absl::Status(Sandbox*)>;
166 init_function_(static_cast<InitFunction>(init_function)), in BasicTransaction()
173 init_function_(static_cast<InitFunction>(init_function)), in BasicTransaction()
186 InitFunction init_function_;
/external/llvm/lib/Transforms/Utils/
DModuleUtils.cpp114 Function *InitFunction = in createSanitizerCtorAndInitFunctions() local
118 InitFunction->setLinkage(Function::ExternalLinkage); in createSanitizerCtorAndInitFunctions()
119 IRB.CreateCall(InitFunction, InitArgs); in createSanitizerCtorAndInitFunctions()
127 return std::make_pair(Ctor, InitFunction); in createSanitizerCtorAndInitFunctions()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DModuleUtils.cpp127 FunctionCallee InitFunction = in createSanitizerCtorAndInitFunctions() local
134 IRB.CreateCall(InitFunction, InitArgs); in createSanitizerCtorAndInitFunctions()
141 return std::make_pair(Ctor, InitFunction); in createSanitizerCtorAndInitFunctions()
160 FunctionCallee InitFunction; in getOrCreateSanitizerCtorAndInitFunctions() local
161 std::tie(Ctor, InitFunction) = llvm::createSanitizerCtorAndInitFunctions( in getOrCreateSanitizerCtorAndInitFunctions()
163 FunctionsCreatedCallback(Ctor, InitFunction); in getOrCreateSanitizerCtorAndInitFunctions()
164 return std::make_pair(Ctor, InitFunction); in getOrCreateSanitizerCtorAndInitFunctions()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Utils/
DModuleUtils.cpp207 FunctionCallee InitFunction = in createSanitizerCtorAndInitFunctions() local
218 auto *InitFn = cast<Function>(InitFunction.getCallee()); in createSanitizerCtorAndInitFunctions()
230 IRB.CreateCall(InitFunction, InitArgs); in createSanitizerCtorAndInitFunctions()
241 return std::make_pair(Ctor, InitFunction); in createSanitizerCtorAndInitFunctions()
261 FunctionCallee InitFunction; in getOrCreateSanitizerCtorAndInitFunctions() local
262 std::tie(Ctor, InitFunction) = llvm::createSanitizerCtorAndInitFunctions( in getOrCreateSanitizerCtorAndInitFunctions()
264 FunctionsCreatedCallback(Ctor, InitFunction); in getOrCreateSanitizerCtorAndInitFunctions()
265 return std::make_pair(Ctor, InitFunction); in getOrCreateSanitizerCtorAndInitFunctions()
/external/deqp/external/openglcts/modules/common/subgroups/
DglcSubgroupsTestsUtils.hpp251 typedef void (*InitFunction)(SourceCollections &programCollection, Arg0 arg0); typedef in glc::subgroups::SubgroupFactory
259 … SupportFunction suppFunc, InitFunction initFunc, TestFunction testFunc, Arg0 arg0) in SubgroupFactory()
335 … const std::string &desc, SupportFunction suppFunc, InitFunction initFunc, in addFunctionCaseWithPrograms()
344 InitFunction m_initFunc;
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h171 struct InitFunction { struct
258 std::vector<InitFunction> InitFunctions;
442 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::InitFunction) in LLVM_YAML_IS_SEQUENCE_VECTOR()
555 template <> struct MappingTraits<WasmYAML::InitFunction> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
556 static void mapping(IO &IO, WasmYAML::InitFunction &Init); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h162 struct InitFunction { struct
234 std::vector<InitFunction> InitFunctions;
418 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::InitFunction) in LLVM_YAML_IS_SEQUENCE_VECTOR()
530 template <> struct MappingTraits<WasmYAML::InitFunction> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
531 static void mapping(IO &IO, WasmYAML::InitFunction &Init); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp518 FunctionCallee InitFunction = declareSanitizerInitFunction( in instrumentModule() local
521 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second}); in instrumentModule()
526 FunctionCallee InitFunction = declareSanitizerInitFunction( in instrumentModule() local
529 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second}); in instrumentModule()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp457 void MappingTraits<WasmYAML::InitFunction>::mapping( in mapping()
458 IO &IO, WasmYAML::InitFunction &Init) { in mapping()
DWasmEmitter.cpp231 for (const WasmYAML::InitFunction &Func : Section.InitFunctions) { in writeSectionContent()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp476 void MappingTraits<WasmYAML::InitFunction>::mapping( in mapping()
477 IO &IO, WasmYAML::InitFunction &Init) { in mapping()
DWasmEmitter.cpp246 for (const WasmYAML::InitFunction &Func : Section.InitFunctions) { in writeSectionContent()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp467 FunctionCallee InitFunction = declareSanitizerInitFunction( in instrumentModule() local
470 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second}); in instrumentModule()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp4222 if (auto InitFunction = getOpenMPRuntime().emitThreadPrivateVarDefinition( in EmitOMPThreadPrivateDecl() local
4224 CXXGlobalInits.push_back(InitFunction); in EmitOMPThreadPrivateDecl()
DCGOpenMPRuntime.cpp1868 auto InitFunction = CGM.CreateGlobalInitOrDestructFunction( in emitThreadPrivateVarDefinition() local
1873 InitCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, InitFunction, in emitThreadPrivateVarDefinition()
1878 return InitFunction; in emitThreadPrivateVarDefinition()
/external/pytorch/test/cpp/tensorexpr/
Dtest_reductions.cpp1905 TEST(Reductions, InitFunction) { in TEST() argument