Home
last modified time | relevance | path

Searched refs:entryPointName (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/src/Vulkan/
DVkPipelineCache.cpp21 const std::string &entryPointName, in SpirvShaderKey() argument
27 , entryPointName(entryPointName) in SpirvShaderKey()
57 if(entryPointName.size() != other.entryPointName.size()) in operator <()
59 return entryPointName.size() < other.entryPointName.size(); in operator <()
62 int cmp = memcmp(entryPointName.c_str(), other.entryPointName.c_str(), entryPointName.size()); in operator <()
DVkPipelineCache.hpp58 const std::string &entryPointName,
67 const std::string &getEntryPointName() const { return entryPointName; } in getEntryPointName()
75 const std::string entryPointName; member
/external/angle/third_party/vulkan-deps/glslang/src/gtests/
DTestFixture.h186 const std::string& entryPointName, EShMessages controls,
200 if (!entryPointName.empty()) shader->setEntryPoint(entryPointName.c_str());
213 const std::string& entryPointName, EShMessages controls,
251 &shader, code, entryPointName, controls, nullptr, &shaderName);
289 const std::string& entryPointName, EShMessages controls, in compileLinkIoMap() argument
312 bool success = compile(&shader, code, entryPointName, controls); in compileLinkIoMap()
349 const std::string& entryPointName, EShMessages controls,
358 bool success = compile(&shader, code, entryPointName, controls);
447 const std::string& entryPointName="",
465 …GlslangResult result = compileAndLink(testName, input, entryPointName, controls, clientTargetVersi…
[all …]
/external/deqp-deps/glslang/gtests/
DTestFixture.h186 const std::string& entryPointName, EShMessages controls,
200 if (!entryPointName.empty()) shader->setEntryPoint(entryPointName.c_str());
213 const std::string& entryPointName, EShMessages controls,
251 &shader, code, entryPointName, controls, nullptr, &shaderName);
289 const std::string& entryPointName, EShMessages controls, in compileLinkIoMap() argument
312 bool success = compile(&shader, code, entryPointName, controls); in compileLinkIoMap()
349 const std::string& entryPointName, EShMessages controls,
358 bool success = compile(&shader, code, entryPointName, controls);
447 const std::string& entryPointName="",
465 …GlslangResult result = compileAndLink(testName, input, entryPointName, controls, clientTargetVersi…
[all …]
/external/deqp-deps/glslang/StandAlone/
DStandAlone.cpp167 const char* entryPointName = nullptr; variable
519 entryPointName = argv[1]; in ProcessArguments()
751 entryPointName = argv[1]; in ProcessArguments()
1028 if (entryPointName) in CompileAndLinkShaderUnits()
1029 shader->setEntryPoint(entryPointName); in CompileAndLinkShaderUnits()
1031 if (entryPointName == nullptr) in CompileAndLinkShaderUnits()
/external/angle/third_party/vulkan-deps/glslang/src/StandAlone/
DStandAlone.cpp171 const char* entryPointName = nullptr; variable
643 entryPointName = argv[1]; in ProcessArguments()
896 entryPointName = argv[1]; in ProcessArguments()
1199 if (entryPointName) in CompileAndLinkShaderUnits()
1200 shader->setEntryPoint(entryPointName); in CompileAndLinkShaderUnits()
1202 if (entryPointName == nullptr) in CompileAndLinkShaderUnits()
/external/llvm-project/mlir/tools/mlir-vulkan-runner/
DVulkanRuntime.h108 void setEntryPoint(const char *entryPointName);
DVulkanRuntime.cpp52 void VulkanRuntime::setEntryPoint(const char *entryPointName) { in setEntryPoint() argument
53 entryPoint = entryPointName; in setEntryPoint()
/external/llvm-project/mlir/lib/Conversion/GPUToVulkan/
DConvertLaunchFuncToVulkanCalls.cpp401 Value entryPointName = createEntryPointNameConstant( in translateVulkanLaunchCall() local
407 ValueRange{vulkanRuntime, entryPointName}); in translateVulkanLaunchCall()
/external/deqp-deps/glslang/glslang/MachineIndependent/
Dlocalintermediate.h437 entryPointName = ep; in setEntryPointName()
439 processes.addArgument(entryPointName); in setEntryPointName()
442 const std::string& getEntryPointName() const { return entryPointName; } in getEntryPointName()
975 std::string entryPointName; variable
DlinkValidate.cpp98 entryPointName = unit.getEntryPointName(); in mergeCallGraphs()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/
Dlocalintermediate.h446 entryPointName = ep; in setEntryPointName()
448 processes.addArgument(entryPointName); in setEntryPointName()
451 const std::string& getEntryPointName() const { return entryPointName; } in getEntryPointName()
1044 std::string entryPointName; variable
DlinkValidate.cpp149 entryPointName = unit.getEntryPointName(); in mergeCallGraphs()
/external/swiftshader/src/Pipeline/
DSpirvShader.cpp31 const char *entryPointName, in SpirvShader() argument
83 if(stage == pipelineStage && strcmp(name, entryPointName) == 0)
755 ASSERT_MSG(entryPoint != 0, "Entry point '%s' not found", entryPointName);
DSpirvShader.hpp537 const char *entryPointName,