/external/swiftshader/src/Vulkan/ |
D | VkPipelineCache.cpp | 21 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 <()
|
D | VkPipelineCache.hpp | 58 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/ |
D | TestFixture.h | 186 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/ |
D | TestFixture.h | 186 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/ |
D | StandAlone.cpp | 167 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/ |
D | StandAlone.cpp | 171 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/ |
D | VulkanRuntime.h | 108 void setEntryPoint(const char *entryPointName);
|
D | VulkanRuntime.cpp | 52 void VulkanRuntime::setEntryPoint(const char *entryPointName) { in setEntryPoint() argument 53 entryPoint = entryPointName; in setEntryPoint()
|
/external/llvm-project/mlir/lib/Conversion/GPUToVulkan/ |
D | ConvertLaunchFuncToVulkanCalls.cpp | 401 Value entryPointName = createEntryPointNameConstant( in translateVulkanLaunchCall() local 407 ValueRange{vulkanRuntime, entryPointName}); in translateVulkanLaunchCall()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | localintermediate.h | 437 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
|
D | linkValidate.cpp | 98 entryPointName = unit.getEntryPointName(); in mergeCallGraphs()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | localintermediate.h | 446 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
|
D | linkValidate.cpp | 149 entryPointName = unit.getEntryPointName(); in mergeCallGraphs()
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShader.cpp | 31 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);
|
D | SpirvShader.hpp | 537 const char *entryPointName,
|