/external/deqp-deps/glslang/gtests/ |
D | Hlsl.FromFile.cpp | 45 const char* entryPoint; member 74 Target::BothASTAndSpv, true, GetParam().entryPoint); in TEST_P() 81 Target::BothASTAndSpv, true, GetParam().entryPoint); in TEST_P() 88 Target::BothASTAndSpv, GetParam().entryPoint); in TEST_P() 97 Target::Spv, true, GetParam().entryPoint, in TEST_P() 107 Target::Spv, true, GetParam().entryPoint, in TEST_P() 115 GetParam().entryPoint, "/baseResults/", in TEST_P() 126 Target::Spv, true, GetParam().entryPoint, in TEST_P()
|
D | Remap.FromFile.cpp | 44 const char* entryPoint; member 77 GetParam().entryPoint, in TEST_P()
|
D | Spv.FromFile.cpp | 46 const char* entryPoint; member 149 Target::Spv, GetParam().entryPoint, in TEST_P() 164 Target::Spv, GetParam().entryPoint, in TEST_P()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseHelper.h | 81 const TString* entryPoint = nullptr) 94 if (entryPoint != nullptr) in TParseVersions() 95 sourceEntryPointName = *entryPoint; in TParseVersions() 276 const TString* entryPoint = nullptr);
|
D | ShaderLang.cpp | 109 TString entryPoint = sourceEntryPointName.c_str(); in CreateParseContext() local 111 language, infoSink, forwardCompatible, messages, &entryPoint); in CreateParseContext() 1722 void TShader::setEntryPoint(const char* entryPoint) in setEntryPoint() argument 1724 intermediate->setEntryPointName(entryPoint); in setEntryPoint()
|
D | ParseHelper.cpp | 54 const TString* entryPoint) : in TParseContext() argument 56 infoSink, forwardCompatible, messages, entryPoint), in TParseContext() 98 if (entryPoint != nullptr && entryPoint->size() > 0 && *entryPoint != "main") in TParseContext()
|
/external/deqp/framework/opengl/ |
D | gluShaderProgram.hpp | 93 void specialize (const char* entryPoint, glw::GLuint numSpecializationConstants, 366 ShaderBinary& operator<< (const std::string& entryPoint) in operator <<() 368 shaderEntryPoints.push_back(entryPoint); in operator <<()
|
D | gluShaderProgram.cpp | 135 void Shader::specialize (const char* entryPoint, glw::GLuint numSpecializationConstants, in specialize() argument 144 …m_gl.specializeShader(m_shader, entryPoint, numSpecializationConstants, constantIndex, constantVal… in specialize()
|
/external/deqp-deps/glslang/SPIRV/ |
D | SPVRemapper.h | 115 …spirvbin_t(int verbose = 0) : entryPoint(spv::NoResult), largestNewId(0), verbose(verbose), errorL… in entryPoint() function 282 spv::Id entryPoint; // module entry point variable
|
D | SpvBuilder.cpp | 1080 Instruction* entryPoint = new Instruction(OpEntryPoint); in addEntryPoint() local 1081 entryPoint->addImmediateOperand(model); in addEntryPoint() 1082 entryPoint->addIdOperand(function->getId()); in addEntryPoint() 1083 entryPoint->addStringOperand(name); in addEntryPoint() 1085 entryPoints.push_back(std::unique_ptr<Instruction>(entryPoint)); in addEntryPoint() 1087 return entryPoint; in addEntryPoint() 1091 void Builder::addExecutionMode(Function* entryPoint, ExecutionMode mode, int value1, int value2, in… in addExecutionMode() argument 1094 instr->addIdOperand(entryPoint->getId()); in addExecutionMode() 1195 Function* Builder::makeEntryPoint(const char* entryPoint) in makeEntryPoint() argument 1203 …entryPointFunction = makeFunctionEntry(NoPrecision, makeVoidType(), entryPoint, params, decoration… in makeEntryPoint() [all …]
|
D | SPVRemapper.cpp | 413 entryPoint = spv::NoResult; in buildLocalMaps() 454 entryPoint = asId(start + 2); in buildLocalMaps() 1067 if (fn->first == entryPoint) { // don't DCE away the entry point! in dceFuncs()
|
D | SpvBuilder.h | 381 Id createBuiltinCall(Id resultType, Id builtins, int entryPoint, const std::vector<Id>& args);
|
D | GlslangToSpv.cpp | 226 spv::Instruction* entryPoint; member in __anon26c506720111::TGlslangToSpvTraverser 1334 …entryPoint = builder.addEntryPoint(executionModel, shaderEntry, glslangIntermediate->getEntryPoint… in TGlslangToSpvTraverser() 1521 entryPoint->addIdOperand(*it); in finishSpv()
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmComputeShaderTestUtil.hpp | 337 std::string entryPoint; member 357 : entryPoint ("main") in ComputeShaderSpec()
|
D | vktSpvAsmComputeShaderCase.cpp | 297 …e, VkPipelineLayout pipelineLayout, VkShaderModule shader, const char* entryPoint, const vkt::Spir… in createComputePipeline() argument 332 entryPoint, // pName in createComputePipeline() 721 …teComputePipeline(vkdi, device, *pipelineLayout, *module, m_shaderSpec.entryPoint.c_str(), m_shade… in iterate()
|
D | vktSpvAsmInstructionTests.cpp | 4122 spec1.entryPoint = "entrypoint1"; in createMultipleShaderGroup() 4128 spec2.entryPoint = "entrypoint2"; in createMultipleShaderGroup() 5531 spec.entryPoint = "rdc"; in createOpNameGroup()
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationWin32KeyedMutexTests.cpp | 906 …void d3dx11CompileShader (const char* shaderCode, const char * entryPoint, const char* shaderModel… in d3dx11CompileShader() argument 916 entryPoint, in d3dx11CompileShader() 931 …void d3dCompileShader (const char* shaderCode, const char * entryPoint, const char* shaderModel, I… in d3dCompileShader() argument 941 entryPoint, in d3dCompileShader()
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | BindingGraphValidator.java | 166 Optional<DependencyRequest> entryPoint = componentMethod.dependencyRequest(); in validateSubgraph() local 167 if (entryPoint.isPresent()) { in validateSubgraph() 169 entryPoint.get(), in validateSubgraph()
|
/external/deqp-deps/glslang/glslang/Public/ |
D | ShaderLang.h | 404 void setEntryPoint(const char* entryPoint);
|
/external/skia/src/sksl/ |
D | SkSLSPIRVCodeGenerator.cpp | 3006 void SPIRVCodeGenerator::writeGeometryShaderExecutionMode(SpvId entryPoint, OutputStream& out) { in writeGeometryShaderExecutionMode() argument 3039 this->writeInstruction(SpvOpExecutionMode, entryPoint, input, out); in writeGeometryShaderExecutionMode() 3058 this->writeInstruction(SpvOpExecutionMode, entryPoint, output, out); in writeGeometryShaderExecutionMode() 3061 this->writeInstruction(SpvOpExecutionMode, entryPoint, in writeGeometryShaderExecutionMode() 3068 this->writeInstruction(SpvOpExecutionMode, entryPoint, SpvExecutionModeInvocations, in writeGeometryShaderExecutionMode() 3168 SpvId entryPoint = fFunctionMap[main]; in writeInstructions() local 3169 this->writeWord(entryPoint, out); in writeInstructions() 3175 this->writeGeometryShaderExecutionMode(entryPoint, out); in writeInstructions()
|
D | SkSLSPIRVCodeGenerator.h | 361 void writeGeometryShaderExecutionMode(SpvId entryPoint, OutputStream& out);
|
/external/skqp/src/sksl/ |
D | SkSLSPIRVCodeGenerator.cpp | 3015 void SPIRVCodeGenerator::writeGeometryShaderExecutionMode(SpvId entryPoint, OutputStream& out) { in writeGeometryShaderExecutionMode() argument 3048 this->writeInstruction(SpvOpExecutionMode, entryPoint, input, out); in writeGeometryShaderExecutionMode() 3067 this->writeInstruction(SpvOpExecutionMode, entryPoint, output, out); in writeGeometryShaderExecutionMode() 3070 this->writeInstruction(SpvOpExecutionMode, entryPoint, in writeGeometryShaderExecutionMode() 3077 this->writeInstruction(SpvOpExecutionMode, entryPoint, SpvExecutionModeInvocations, in writeGeometryShaderExecutionMode() 3177 SpvId entryPoint = fFunctionMap[main]; in writeInstructions() local 3178 this->writeWord(entryPoint, out); in writeInstructions() 3184 this->writeGeometryShaderExecutionMode(entryPoint, out); in writeInstructions()
|
D | SkSLSPIRVCodeGenerator.h | 309 void writeGeometryShaderExecutionMode(SpvId entryPoint, OutputStream& out);
|
/external/deqp/modules/gles2/functional/ |
D | es2fClippingTests.cpp | 1246 const tcu::Vec3 entryPoint; in TriangleFanFillTest() member 1269 vertex0 = visit.entryPoint; in TriangleFanFillTest() 1273 const tcu::Vec3 v1 = visit.entryPoint - visit.corner; in TriangleFanFillTest() 1285 const tcu::Vec3 v1 = visit.entryPoint - visit.corner; in TriangleFanFillTest()
|
/external/deqp/modules/gles3/functional/ |
D | es3fClippingTests.cpp | 1250 const tcu::Vec3 entryPoint; in TriangleFanFillTest() member 1273 vertex0 = visit.entryPoint; in TriangleFanFillTest() 1277 const tcu::Vec3 v1 = visit.entryPoint - visit.corner; in TriangleFanFillTest() 1289 const tcu::Vec3 v1 = visit.entryPoint - visit.corner; in TriangleFanFillTest()
|